how to encode and decode negative pixel to positive pixel in matlab ?
    3 views (last 30 days)
  
       Show older comments
    
hi, I want to ask. I have 512x512 image and I want to calculate the entropy. But, it has some error because the pixel contains negative value. Has anybody in here know how to do Matlab code to convert negative pixel to positive pixel and decode it back? please help me
0 Comments
Accepted Answer
  Image Analyst
      
      
 on 3 Mar 2018
        Try this:
negPixels = grayImage < 0;
grayImage(negPixels) = 0; % or 1 or whatever you want.
3 Comments
More Answers (0)
See Also
Categories
				Find more on Image Segmentation and Analysis in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!