Question if a builtin function is available (lowest blue value in column)
Posted: 2017-05-02T01:54:12-07:00
Hi all,
I am using Magick .NET 7 successfully in a multithreaded application. Especially after the last release, it no longer crashes with a Memory Access Violation. I mainly use crop and convert to black/white and using that picture in tesseract for OCR.
Anyway, now I have a new function I need to write and I was wondering if I can receive a result without pixel by pixel check:
I have a picture and I want to extract the (y-) Position of the pixel for each column (not row) with the lowest blue value in RGB.
Lowest blue value is coincidentially the best minimal data to identify that pixel.
My target is to extract a set of x/y coordinates of a MagickImage which is a chart.
Is there any other way than checking each pixel one by one?
Thanks in advance
I am using Magick .NET 7 successfully in a multithreaded application. Especially after the last release, it no longer crashes with a Memory Access Violation. I mainly use crop and convert to black/white and using that picture in tesseract for OCR.
Anyway, now I have a new function I need to write and I was wondering if I can receive a result without pixel by pixel check:
I have a picture and I want to extract the (y-) Position of the pixel for each column (not row) with the lowest blue value in RGB.
Lowest blue value is coincidentially the best minimal data to identify that pixel.
My target is to extract a set of x/y coordinates of a MagickImage which is a chart.
Is there any other way than checking each pixel one by one?
Thanks in advance