Toggle navigation
Search
Ask a question
Login
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
Edit Answer Details
Mark answer as:
Spam
Not spam
Close
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
Log-in
to answer to this question.
Delete question
Are you sure about deleting the question?
Close
Delete Answer
Are you sure about deleting the answer?
Close
Delete Comment
Are you sure about deleting the comment?
Close
Close
This forum by FOSSEE at
IIT Bombay
is licensed under a
Creative Commons Attribution-ShareAlike 4.0 International License
27-02-16, 1:45 p.m. chinnur010
27-02-16, 1:56 p.m. chinnur010
01-03-16, 1:51 p.m. shamika
Login to add comment