How can I properly change the input image size on CondLane?
See original GitHub issueCurrently I’m detecting lanes using tools/detect.py
.
For Condlane inference, I changed this
batch_size=1 # from 8 (for condlane inference)
And tried these configs for FHD input image
img_height = 1080 # from 320
img_width = 1920 # from 800
ori_img_h = 1080 # from 590
ori_img_w = 1920 # from 1640
crop_bbox = [0,540,1920,1080] # from [0, 270, 1640, 590]
Changing img_scale = (800,320)
results
The size of tensor a must match the size of tensor b at non-singleton dimension 3
How can I properly change the input image size (ex. FHD) on CondLane config file?
Issue Analytics
- State:
- Created a year ago
- Comments:20 (5 by maintainers)
Top Results From Across the Web
lanedet-main/configs/condlane/resnet50_culane.py · Issue #22
In my case I just changed the batch size from 8 to 1 in the configuration ... How can I properly change the...
Read more >Development and implementation of a rear vision device test ...
Adjustment of Image Size to Obtain Proper. Target Vehicle Scale ... observing its change in position or size over time or motion ......
Read more >Carbon Catcher Design Report - eScholarship
One of the most relevant problems in today's world is climate change. Year after year, the average temperature around the globe has been...
Read more >1603 SMX Maintenance and Trouble Clearing
only and are subject to change without notice. ... Clear BITS Alarm (Input) ... ensure proper system operation, pre-upgrade backup, and a detailed,....
Read more >DRDC Toronto No. CR-2004-071 MODELLING THE SEA ...
The original document contains color images. ... Data was gathered from available sources, including SME input, documentation (e.g..
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Sorry for the late response. I had to turn on the computer in my college. This is my config file and the result
Hope it works
@parkjbdev Thank you so much for your response, I have resized my images to (1640, 590) it works well without any issues. Anyhow I will try once with your config file keeping the original image.
Thanks for your kind response, I appreciate it.