I want to cut a sub-purt of an image (or crop it) using Emgu CV (or OpenCV) and calculate average color of that part; looking for changes.
Thanks
|
I want to cut a sub-purt of an image (or crop it) using Emgu CV (or OpenCV) and calculate average color of that part; looking for changes. Thanks
| |||
|
feedback
|
TYPE average = image.GetAverage(image);
All the process does is loop through each pixel adds its value then divides by the total number of pixels. Saves you writing the code yourself. Thanks Chris | |||
|
feedback
|