0
Vehicle Count

How to count number of vehicles in an image using scilab??? 


Scilab 27-02-16, 12:23 p.m. chinnur010
0
You need to use image processing toolbox functions that pertain to image classification and object detection.
27-02-16, 12:56 p.m. shamika
This is matlab code for vehicle count.Could you please tell the equivalent code  for this in scilab?

blobAnalysis = vision.BlobAnalysis('BoundingBoxOutputPort', true, 'AreaOutputPort', false, 'CentroidOutputPort', false, 'MinimumBlobArea', 150);
bbox = step(blobAnalysis, filteredForeground);
result = insertShape(frame, 'Rectangle', bbox, 'Color', 'green');
numCars = size(bbox, 1);
result = insertText(result, [10 10], numCars, 'BoxOpacity', 1, 'FontSize', 14);
figure; imshow(result); title('Detected Cars');


27-02-16, 1:45 p.m. chinnur010
Is there any equivalent scilab function for bbox?

27-02-16, 1:56 p.m. chinnur010
Please take a look at the functions in SIVP and IPD.

01-03-16, 1:51 p.m. shamika

Login to add comment


0
Dodge brake calipers are a great addition to any vehicle. Calipers are responsible for stopping the wheels of your car or truck, so they're an important component. If you own a Dodge, you can find a wide range of different brake calipers to fit your needs and budget. But dodge brake calipers are the best choice for your vehicle. You'll find a wide variety of options when shopping for new Dodge brake calipers online or at your local dealership; this includes different sizes for both front.
10-11-22, 6:24 p.m. MarieHall


Log-in to answer to this question.