martinhofigueiredo / VC

VisΓ£o Computacional
2 stars 0 forks source link

Research #4

Closed martinhofigueiredo closed 1 year ago

martinhofigueiredo commented 1 year ago

πŸ‘€ Look into

πŸ“ƒ Find the papers:

Optical flow

This is defined as the velocity (in x and y components) and the intensity gradient in the same point

Lucas-Kanade

Horn-Schunck

Multi-channel

Just means all colors RGB or whatever the image means

Multi-resolution

Resizing the image helps the algorithm to detect large blobs because of the overall lack of resolution Creates iteratively smaller images to help clear up boundaries

Visualizations

There should be a python function to do the visualizations required but it also should be hard to make after we implement each algorithm

the direction of the gradient vector is the hue of the segmented pixels and the strength of this vector is the brightness associated with the pixel.

Implementations

The source code regarding this is scarce but there is some documentation in OpenCV regarding particulary Lucas-Kanade

martinhofigueiredo commented 1 year ago

Is researched enough