MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
๐ก
๐ ANPR (LPR) SDK
๐ญ Persona PhotoBooth
๐งต Realtime Stitching SDK
๐ Contents table
๐ MareArts ➚
๐ฌ MareArts Live ➚
3/29/2022
python list string to list
.
import
ast
x
=
'[ "A","B","C" , " D"]'
x
=
ast.literal_eval(x)
>>>
x
[
'A'
,
'B'
,
'C'
,
' D'
]
.
www.marearts.com
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Deep learning study - logistic classifier #3
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...
Real-time stitching multi-video to one screen
* Introduction - The solution shows panorama image from multi images. The panorama images is processing by real-time stitching algorithm...
Real-time N camera stitching Class.
As you can see in the following video, I created a class that stitching n cameras in real time. https://www.youtube.com/user/feelmare/sear...
Image warping (using opencv findHomography, warpPerspective)
fig 1. Left: set 4 points (Left Top, Right Top, Right Bottom, Left Bottom), right:warped image to (0,0) (300,0), (300,300), (0,300) Fi...
OpenCV Stitching example (Stitcher class, Panorama)
Image size of origin is 320*240. Processing time is 30.96 second took. The result of stitching The resul...
OpenCV Pixel Access, at, ptr, data, iteration (example)
I once wrote the following article. http://study.marearts.com/2014/04/opencv-study-mat-point-access-method.html This article is a sample c...
YUV color format (444, 422, 411) - simple explanation
In the YUV color format, Y is bright information, U is blue color area, V is red color area. Show the below picture. The picture is u-v col...
Two view of cam to one screen using stitching algorithm(OpenCV, example source code), (mosaic)
This source code based on -> http://feelmare.blogspot.kr/2011/08/two-image-mosaic-paranoma-based-on-sift.html This link page introduces...
Sift matching C++ source code / using opencv library
Created Date : 2011.10 Language : C/C++ Tool : Microsoft Visual C++ 2008 Library & Utilized : OpenCV 2.3 Reference : SIFT referenc...
error MSB8020: The build tools for Visual Studio 2010 (Platform Toolset = 'v100') cannot be found. To build using the v100 build tools, please install Visual Studio 2010 build tools. Alternatively, you may upgrade to the current Visual Studio tools by selecting the Project menu or right-click the solution, and then selecting "Upgrade Solution...". C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.Cpp.Platform.targets 64 5 TPC30004
Proceed with the project to update the 2012 version, or that you must reinstall Visual Studio 2010. If you are using Visual Studio 2...
No comments:
Post a Comment