How to divide image into two regions?
    6 views (last 30 days)
  
       Show older comments
    
Hi all, I have drawn a line on image and that line should divide image into two regions. when a car entering into line region it should detect car and count.I am working it for counting of cars in video. Please help me Thanks in advance
0 Comments
Answers (1)
  Image Analyst
      
      
 on 7 Jun 2016
        
      Edited: Image Analyst
      
      
 on 7 Jun 2016
  
      What is the "Line region"? Anyway, if you have the equation of a line, and the centroid of a blob, or any points in it, it's just simple algebra to determine if it's above or below the line. Just stick the centroid x, or any of the x values from the blob into the formula for the line and determine if the line's y is above or below the y centroid.
belowLine = yCentroid > (slope * xCentroid + intercept);
It's really trivial. What are you stuck on?
5 Comments
See Also
Categories
				Find more on Image Processing and Computer Vision in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
