Machine Vision

cancel
Showing results for 
Search instead for 
Did you mean: 

Manual Thresholding and Saving 8-bit binary

Solved!
Go to solution

Hello,

 

I am trying to understand some programming and thresholding. I have an image (attached) that I want to convert to 8 bit binary (0-black and 255-white pixel intensities only) but I want to use manual loops and not the available vi's so I can understand the process and manipulate it in my way. I tried doing somethings but seems like it does not work properly. Can somebody please help and let me know how to perform thresholding using manual loops in LabVIEW?

 

The other reason to do this is I tried using thresholding vi and converted an image to binary (0 and 255) but after I saved the file, it was not binary with only blacks and whites anymore. It has some grey pixels too so the system did not save the binary image as binary. I would also like to learn how to force the system to save the pixels as only 0 and 255 even if they are not?

VeMo_1-1741891551342.jpeg

 

 VeMo_0-1741891518222.png

 

 

Thanks

0 Kudos
Message 1 of 8
(297 Views)

Your output image will turn black for all pixels that are >100 and keep their values otherwise. Maybe you want to swap your cases and either output a zero or a 255, depending on the comparison.

 

Here's what I would do. Arguably quite a bit simpler 😄 

 

 

altenbach_1-1741903615572.png

 

 

 

Message 2 of 8
(278 Views)

I was able to make my program work with minor corrections/edits. 

 

I tried your suggestion too but I wasn't able to make it work. I am still new so I may have made some mistakes in trying your suggested idea. Thank you for the suggestion. 

0 Kudos
Message 3 of 8
(249 Views)

 

Both should work exactly the same, but with simpler code there are many fewer places for bugs to hide. Can you show us what you did?

0 Kudos
Message 4 of 8
(246 Views)

Yes sure I can share. Below program is doing what I was trying to achieve and understand. I do have one more question that I am going to post separately in a new thread. 

 

VeMo_0-1741965439967.png

VeMo_1-1741965468663.png

 

 

0 Kudos
Message 5 of 8
(244 Views)

Here's a quick demo:

 

altenbach_0-1741966061516.png

 

0 Kudos
Message 6 of 8
(243 Views)
Solution
Accepted by topic author VeMo

@VeMo wrote:

Yes sure I can share. Below program is doing what I was trying to achieve and understand. I do have one more question that I am going to post separately in a new thread. 


There are some glaring overcomplications with your code.

 

  • The "value" terminal belongs before the loop so it can be constant folded for the duration of the loop stack. If it is on top of the loop stack, the compiler must assume that it can change at any time, requiring polling at each iteration of the inner loop. Very inefficient.
  • Why all the math in the case structure if you could just use two diagram constants (0, 255)? For example this would be the same (make sure all diagram constant have the correct representation, U8):
  •  altenbach_0-1741966522599.png

     

  • Simplify!!!!
Message 7 of 8
(239 Views)

Thank you for your suggestions. I learned now two new ways to approach the same thing and use the best possible method. 

 

I am going to post another thread now which is what I am after in manipulating a simple image of a circle but with some noise around it. 

0 Kudos
Message 8 of 8
(223 Views)