Hey Guys,
Does anyone know about a Technology or an API that can render a 2D Image from a 2D / 3D Snapshot??
Please note that I am not asking about Image Recognition Software or APIs..
Thanks..
Hey Guys,
Does anyone know about a Technology or an API that can render a 2D Image from a 2D / 3D Snapshot??
Please note that I am not asking about Image Recognition Software or APIs..
Thanks..
Mahesh Khambadkone
Can you clarify what you mean by the difference between a Snapshot and an Image ?
Vijay Khubchandani
Mahesh, actually it was my bad..
The more appropriate words would be to render a 2D Line Drawing from a Snapshot(something clicked from a Camera)..
Mahesh Khambadkone
You’re looking for filters.
I presume you’re looking for an API to plug into some software you’re building, have a look at https://www.jhlabs.com/ip/filters/index.html and https://github.com/alexmic/filtrr/tree/master/filtrr2
Alterntatively, Photoshop (and other online tools) exist if you’re going to be doing these conversions in batch mode.
Vijay Khubchandani
Mahesh, I am not sure if these will give the desired results.. But you’ve gievn me the right direction to Search in.. Thanks..
Mahesh Khambadkone
Dont forget to try to apply the filters in sequence.
Also, check out https://stackoverflow.com/questions/1357403/how-to-cartoon-ify-an-image-programmatically.
Vijay Khubchandani
Thanks again man..
Kaushal Bhavsar
You can do it by two steps:
1. Do an “edge-detection” for the image. It will give you the “outlines”.
2. Convert the edges into a vector.
3. Optionally, save that vector into SVG file so that you can use this 2D image of yours.
Vijay Khubchandani
Thanks Man..
Kaushal Bhavsar
Anytime. Feel free to ping me for such things…