Contour detection example python. So let it be in hierarchy-1.
Contour detection example python. Improving accuracy of findContour in OpenCV Python.
Contour detection example python Using Python Oct 5, 2012 · Instead of scanning x and y direction, I need to follow the contour of objects in the image. g, grayscale value ). Recommended read: How to detect edges in Python? So let’s get started with Detecting Contours for images using the OpenCV library in Python. The project demo consists of contour detection with Apr 23, 2019 · This is the last part of OpenCV tutorial for beginners and the complete set of the series is like follows: Understanding color models and drawing figures on images; The basics of image processing with filtering and gradients; From feature detection to face detection; Contour detection and having a little bit of fun Feb 27, 2015 · Masking out the information. Apr 28, 2022 · From the full topology map we are given, we can filter out the contours, the idea is that if a parent contour has inner contours, it means that it's an OUT contour and the child inside is the IN contour. So let it be in hierarchy-1. Result Image Feb 23, 2015 · contours is a list of all possible contours, and within each contour is a 3D matrix that is shaped in a N x 1 x 2 format. Jan 3, 2022 · But for your specific problem the issue is probably cv2. 7, Open Source Computer Vision Library Oct 8, 2020 · I am having difficulties contouring this type of low-contrast objects: Where I aim for an output such as: In the example above I used cv2. Dec 21, 2015 · Improve contour detection with OpenCV (Python) Ask Question So the question is about making the following contour detection more robust. findContours(edges, cv2. In this tutorial, we will work on a little project to learn how to apply contour detection. Contours which intersect the image edge are open; all others are closed. For example, using As you can see, the contour detection algorithm accurately detected the edges of the object in the image. If the number of vertex points in the approximate contour is 5 or more then draw the contour and set it as a triangle. and even that highly depends on the appearance of the deposited material. I'm going to remove the singleton second dimension so we can get this to be a N x 2 matrix. If for the contour i there are no next, previous, parent, or Nov 19, 2016 · I am new to opencv using python and trying to get the shape of a contour in an image. shape. This project enhances surveillance and monitoring by automating motion tracking through webcam feed, grayscale conversion, and contour detection. Feb 29, 2024 · The output does not reflect the expected detection. In this paper, the existing contour detection approaches are reviewed and roughly divided into three categories: pixel-based, edge-based, and region-based. How can I do it? I read the documentation of the contour function, but I can't get what I want. It is often the first step for many interesting applications, such as image-foreground extraction, simple-image segmentation, detection and recognition. Mar 10, 2022 · Contour Detection in OpenCV (Python) – OpenCV Tutorial in Python by admin March 10, 2022 October 18, 2022 This post and the follow-up video explain how to detect (recognize) contours of an image in OpenCV (Python). Checkout the fully structured code Oct 10, 2018 · I have collection of objects in a image. Python Program 4 days ago · Next comes contour-2a. CHAIN_APPROX_SIMPLE Jan 4, 2023 · First one is source image, second is contour retrieval mode, third is contour approximation method and it outputs the image, contours, and hierarchy. In addition, since the Jan 23, 2024 · I currently have a database of images, where each of the image are vertically concatenated from 3 small images (they are varying in width and height). In the above image you can see examples of objects that would be impossible to extract using simple thresholding and contour detection, Since these objects are touching, overlapping, or both, the contour extraction process would treat each group of touching objects as a Sep 11, 2023 · Hi, I would like to detect and get the position of a template shape in a another image. cv2. Find the approximate contour for each of the contours. In skimage. Now that we have a basic understanding of contours and their importance, let’s explore how OpenCV handles contour detection. I have copied the following image from a OpenCV Threshold Tutorial I wrote recently. Join PyQt6 13 Hours Course in Udemyhttps://www. I also tried to find all the contours using findContours, and filter out the contours with more (or less) than 4 edges, but this also didn't lead anywhere. Implementing Contour Approximation with OpenCV. Here are some examples: This one is very easy to either detect and measure: Feb 3, 2019 · I would like to find the contour of the rectangular photograph inside of the object. Improve contour detection with OpenCV (Python) 2. Nov 17, 2022 · Contour detection is very useful in shape analysis, object detection and recognition. Just the read lines in this example. RETR_LIST, cv2. Using the findContours() function, we extract the contours from this binary image. Resources Oct 6, 2021 · opencv_contour_approx. Here is the original image Jan 30, 2024 · Contour Detection: Utilize cv2. findContours(); Iterate over each contour: calculate the area, if the area of contour is in a given range say 70 < area < 150. Apr 9, 2020 · In this tutorial we are going to learn the usage of findcontours and drawcontours functions in OpenCV Python. By following the steps outlined in this article, you can detect contours in an image using OpenCV and Python. Based on edge and object contour, human can further complete higher level vision tasks, such as shape matching [1], [2], image segmentation [3], [4], and object recognition [5], [6]. drawContours(img 4 days ago · Goal. any layers that are visible. For example, here is one template (on right) and the image (on left) : I must extract the position and rotation of the shape if it exists in the image. In our newsletter, we share OpenCV tutorials and examples written in C++/Python, and Computer Vision and Machine Learning algorithms and news. drawContours(), you need to find contours using the cv2. cvtColor(img,cv2. Code Feb 15, 2019 · OpenCVを使ったPythonでの画像処理について、ここでは輪郭の検出(Contour Detection)について扱っていきます。 輪郭とは境界に沿って同色や強度を持った部分を連続的に繋げた線といっていいでしょう。 Nov 30, 2018 · Please upload a test image and a minimum working example of your code. The template and the shape in the image have the same size. Conclusion. Alternately, sign up to receive a free Computer Vision Resource Guide. A great tutorial with code for that is here. Contour detection in OpenCV Jul 20, 2019 · Improve contour detection with OpenCV (Python) 6. As a starting point you may start with: Find all the contours in the given image using cv2. The function gives optimum results with binary images as input and hence, thresholding of any given image has to be done first followed by any other image enhancement technique. findContours(), Then find the bounding rect of each contour and find the minX, minY, maxX, maxY among all the contour rects, this will give you a outer bounding rect which covers all the smaller contours and hence your desired results. It also uses a built-in OpenCV Watershed algorithm to detect contours. I have a sample scan here. Before jumping to Contour Approximation, we’ll go through a few prerequisites to better understand the whole process. This code will help you in further image processing and computer vision projects where finding contours or Objects be the first task before doing any further identification related ta 2 days ago · Example Code. In this tutorial, you'll briefly learn how to find and draw contours in image by using OpenCV functions in Python. Find contour. findContours on your image, you will have received a structure that lists all of the contours available in your image. May 24, 2024 · Python OpenCV Tutorial: Creating a Contour Detection Example Contours can be explained simply as a curve joining all the continuous points (along the boundary), having same color or intensity. Course materials available here: https://github. if it's reflective, reflections are troublesome. py: The only script required in the project contains all the coding involved. In this example, we will take the following image and apply the above said steps to find the contours. In this tutorial you will learn how to: Use the OpenCV function cv::findContours; Use the OpenCV function cv::drawContours; Theory Code Oct 5, 2024 · With OpenCV, we can easily process video streams and analyze frame differences to detect changes over time, which signifies motion. The tutorial covers: Contour detection; Extracting contours; Source code listing We'll start by loading the required libraries. See example below: As you can see, 3 images have different height and width, and I want to crop the 3 images out automatically using OpenCV In this lecture, we will see how to detect and draw contours using OpenCV with Python. 2. – Double_A Commented Jan 3, 2022 at 0:42 Jan 12, 2022 · ⭐️ Content Description ⭐️In this video, I have explained about contour detection using opencv in python. COLOR_BGR2GRAY) # Apply Canny edge detection edges = cv2. findContours() to find contours in the binary image. I would like to find the contour of each object. Finally contours 4,5 are the children of contour-3a, and they come in the last hierarchy level. However, the script detects other regions outside the stripe area. In the previous examples, we covered the basics of contour detection. Check total size of approxPolyDP points. A sample code for "contour detection" in Python. This is how contour detection and edge detection is done in opencv. Prev Tutorial: Template Matching. I've tried using the corner detection feature of OpenCV, but to no avail. Next Tutorial: Convex Hull. In general, an May 30, 2022 · In the following work, we will be detecting contours, shapes and colors of various geometrical figures in the sample given binary images using Python 2. findContours with a code as the one below, but using a Mar 14, 2022 · I am new in computer vision and I am currently working on a numpy array of 0 and 1 on python as follow : I am trying to find the contour of the shape formed by the cells that are equal to 1, this is Feb 12, 2024 · This step is critical for our contour detection process. Find Contour. ‘contours‘ is a Python list of all the contours in the image. python opencv template-matching computer-vision image-processing classification image-recognition face-detection edge-detection object-detection sift-algorithm opencv-python image-filters opencv-tutorial blob-detection hog-features-extraction contour-detection opencv-python-tutorial feature-extraction-algorithm Mar 7, 2024 · Contour detection is a fundamental technique in computer vision with various applications such as Object Detection I will use Python as a programming language . Goal. Mar 16, 2017 · What you need to do is find all the contours in the given image using cv2. I want to give it like the stroke effect of Photoshop layer style. The uses, the contour, and a small project demonstration is also added. Also, let's use the full representation of the contours for now: Certainly! Let’s continue with more advanced scenarios and code examples for detecting black-shaped contours in photos using OpenCV-Python. Two images (im1 and im2) are similar if the above distances are small. findContours(edge_image, cv2. jpg') # Convert to grayscale gray = cv2. findContours() in Python:. Then, by using findContours() method, we can find the contours in the binary Video Summary: This video is a part of our upcoming Building Vision Applications with Contours and OpenCV course. Hope this helps. findContours doesn't find contours. It accepts the following arguments − cnt − The array of the contour points. e. I know there is something called marching square, but not sure how to do it in python? Thank you. In OpenCV, contour detection or the extraction of contours from any image is done using the findContour() function. COLOR_GRAY2BGR) #parameter -1 specifies that we want to draw all the contours cv2. Developed a real-time moving object detection system using OpenCV and Python. For example, a doughnut with outer circle and inner circle, or a face with face outline and inner contour of organs. If you then want to convert those contours into polygons, you can look to approximate those contours as polygons. CHAIN_APPROX_SIMPLE to remove redundant points, effectively compressing the contour for efficiency. One of my example codes is below, using findContour. 4 days ago · What are contours? Contours can be explained simply as a curve joining all the continuous points (along the boundary), having same color or intensity. findContours() function. Coin-Detection with OpenCV Python3. org/un Mar 30, 2022 · Not able to find exact contour detection (opencv, python) 1. Contours are defined as refined boundaries of objects and can be really helpful in detecting objects. I'm also assuming that you know the index of the contour that was used to surround the object you want. Jul 19, 2020 · Input Image v/s contours detected image. You can use any distance measure. com/mohamedelhacen/ope May 28, 2024 · This code is a Python script that creates a graphical user interface (GUI) for real-time image processing using a webcam. How can I manage this ? Thank you in advance Oct 17, 2024 · In this tutorial, we’ll walk you through the step-by-step process of using image processing techniques to identify coins in an image, sort them by size, and mark each coin with a corresponding… Jul 20, 2019 · Not able to find exact contour detection (opencv, python) 1. But is there a way I can somehow combine the contours so I could get a circle instead of just pieces of it? Here is my code for color thresholding: Note that there are three kinds of distances that you can use via a third parameter ( CONTOURS_MATCH_I1, CONTOURS_MATCH_I2 or CONTOURS_MATCH_I3). Jan 3, 2023 · Contours are a very useful tool for shape analysis and object detection and recognition. I personally prefer d2. Jul 26, 2018 · I am trying to extract the edge of an image (its contour) and change its thickness. Contour finding# We use a marching squares method to find constant valued contours in an image. approxPolyDP for the contour. png: The image on which we’ll test out Contour Approximation. May 18, 2023 · Contours are widely used in tasks such as object recognition, shape analysis, and image segmentation. Using functions such as find_contours, contours of objects within an image can be quickly found at a given constant intensity level. drawContours(). It explains the various parameters with example image, Python and C++ Code. threshold(img,127,255,0) that doesn't result in an optimal image to find contours in. Using simple blob detection, connected component analysis, and contour detection - dnk3-skk4/Coin-detection Shape, Size and Color of Objects are detected using contour Detection in OpenCV Python 2 opencv python2 opencv-python shape-detection color-detection size-analyzer contours-detection Updated Jun 8, 2018 Sep 16, 2019 · In my image database, there is a need to 1) detect if there is a flake (a very black contour) or not in an image and also 2) find a minimum closing circle to measure the radius of the flake. Learning how to detect contours in images for image segmentation, shape analysis and object detection and recognition using OpenCV in Python. Challenges like noise and small contours were addressed through techniques such as image thresholding and morphological operations , enhancing the accuracy of detection. Draw Contours: Visualize the detected contours on the original image. Blur the source; Canny Edge detection. 8. Our goal is to detect and extract each of these coins individually. imread('image. The Idea is to calculate the are incrementally by summing/subtracting the area between polygon sides and on the axis , after one complete loop though the polygon contour you the result of summation/subtraction will be the area inside the polygon 📚 Blog post Link: https://learnopencv. In this video, I've covered all the basic Feb 26, 2014 · Here is the code I proceed with your image, the code will do. I am trying to remove them in order to get a better contour detection. python opencv template-matching computer-vision image-processing classification image-recognition face-detection edge-detection object-detection sift-algorithm opencv-python image-filters opencv-tutorial blob-detection hog-features-extraction contour-detection opencv-python-tutorial feature-extraction-algorithm Jan 8, 2013 · Finding contours in your image . I have modified your code a bit, eliminated the lines which were not adding any value. I am following the below approach to identifying the contour using OpenCV2 Jul 5, 2013 · For each i-th contour contours[i] , the elements hierarchy[i][0] , hiearchyi, hiearchy[i][2] , and hiearchy[i][3] are set to 0-based indices in contours of the next and previous contours at the same hierarchical level, the first child contour and the parent contour, respectively. You will be often detecting Contours for image segmentation, shape analysis, and object detection. Each individual contour is a Numpy array of (x, y) coordinates of boundary points of the object. This gives the result of "white lines" - edges on a blank image. Similarly contour-3 is child of contour-2 and it comes in next hierarchy. Canny(gray, 100, 200) # Find contours contours, hierarchy = cv2. 1. Nov 2, 2015 · Figure 1: An example image containing touching objects. So before finding contours, apply threshold or canny edge detection. In this tutorial you will learn how to: In conclusion, the exploration of contour detection in OpenCV-Python unveils a world of visual intelligence, offering a profound impact on image analysis, object recognition, and shape understanding. Now, we’ll explore more advanced techniques and scenarios where contour detection plays a crucial role. This Python repository demonstrates a simple yet powerful image processing technique for contour analysis and line detection using the OpenCV library. Before finding contours, we should apply threshold or canny edge detection. Mar 29, 2021 · This post focuses on contour detection in images using the OpenCV computer vision library along with hands-on coding using Python and C++. epsilon − Maximum distance from contour to approximated contour. The contours are very useful for shape analysis and object detection. However, the images come with slightly different illuminations. May 24, 2022 · from a topdown picture, you will never be able to identify the top layer, only surfaces that face upwards, i. In this phase, we employ cv2. This program uses OpenCV , Numpy , and Matplotlib libraries. RETR_TREE, cv2. What is a Blob? A Blob is a group of connected pixels in an image that share some common property ( E. Check example in the below Apr 15, 2021 · I am working on contour detection for the image below, however due to the lightning condition, the detection is not complete where the image displays glares. How to detect and draw contours using OpenCV in Python? 0. Before using cv2. How could the stripe (contour/border) be detected properly? Sep 28, 2022 · How to approximate a contour shape in an image using OpenCV Python - The function cv2. It can be considered as a child of contour-2 (or in opposite way, contour-2 is parent of contour-2a). Hope that now you have a clear understanding of it. . If you know a better way to do this in Python, please tell me! (MatplotLib, OpenCV, etc. Object **Contour Detection** extracts information about the object shape in images. Improving accuracy of findContour in OpenCV Python. udemy. Python Pillow - Edge Detection - Edge detection is the process of identifying these boundaries or contours in an image using mathematical algorithms. Jun 1, 2022 · Edge and object contour detection is the essential capability of human vision. OpenCV drawing contours with various methods on a Dec 5, 2022 · Detect polygons in image using OpenCV Python - We first detect all the object contours in the image to detect a polygon. In this example, we will write the contours to a new binary image. The basic idea behind detecting polygons is running Object contour plays an important role in fields such as semantic segmentation and image classification. Jun 7, 2021 · Today we will learn about detecting contours in an image. I urge you not to waste time on active contours. Importing Modules. Moments Aug 1, 2018 · You can get the area inside some polygon "contour" using shoelace formula. Finding contours using opencv (image processing) 1. cvtColor(image, cv2. As a prime example, convolutional neural networks, a type of feedforward Jan 9, 2024 · We delved into the core concepts of moving object detection, background subtraction, and contour detection, offering a detailed implementation approach in OpenCV python. A wise selection of epsilon is needed to get Nov 27, 2012 · But I just want to show the external contour, the silhouette. To find the different features of contours, like area, perimeter, centroid, bounding box etc; You will see plenty of functions related to contours. Considering only regular shapes like square, rectangle, circle and triangle is there any way to get the contour Jun 25, 2022 · In this video of Opencv Zero to one course, I will explain about Contour Detection. Contribute to pfedu/contour_detection development by creating an account on GitHub. 7, Open Source Computer Vision Library Sep 11, 2024 · Learn how to perform image segmentation using Python OpenCV and contour detection in this step-by-step tutorial! Discover how to convert images to grayscale, apply thresholding techniques, detect Apr 2, 2018 · should connect all the little gaps, and you can do contour detection with that. As part of the image processing pipeline, I use findContours to detect contours in my data, and then draw a minimum Examples 1. Contour is a curve joining all the continuous points along the boundary having the same color or intensity. Mar 29, 2021 · Using contour detection, we can detect the borders of objects, and localize them easily in an image. measure. However, the extraction of contour is a difficult task, especially when the contour is incomplete or unclosed. The contours are a useful tool for shape analysis and object detection and recognition. The script fetches an image from a URL, applies Sobel edge detection, adaptive thresholding, and contour analysis to identify and classify regions in the image. RETR_EXTERNAL to retrieve only the extreme outer contours and cv2. Below is an example of how to use cv2. Result. Jan 5, 2025 · In this Python tutorial, we learned how to detect Contours in an Image using the Python OpenCV library. Finding contours using opencv (image processing) 0. In this article, we will learn. The edge detection aims to locate the points in the image where the intensity changes suddenly, which usually corresponds to an edge or a boundary between two regions. We will create code for doing this in real time using Webcam. I Jun 10, 2021 · If you liked this article and would like to download code (C++ and Python) and example images used in this post, please click here. As we journeyed through the simplicity, versatility, and mathematical underpinnings of contour detection, it becomes evident that this fundamental 2 days ago · Contours are the boundaries of objects in an image. Here's an example to demonstrate: Input image. See the below pseudocod Mar 10, 2022 · #opencv #opencvpython #pythonprogramming #python #computervision #machinevision #computerscience #pythontutorial #computervisiontutorial #graphics #ai #machi Apr 2, 2017 · The contour to be extracted should be in white, background being black. Commented Nov 30, 2018 at 8:30. They are often used in object detection, shape analysis, and image segmentation. This function returns a list of contours that can be passed to cv2. Input Image. Another case is if a contour has no inner child then we know it is an IN contour. - mdyusuf13/Real-Time-Moving-Object-Detection-with-OpenCV May 12, 2015 · Although there are seemingly good contour models out there, the source code is never made available - generalised gvf within a level set for example. Jan 6, 2018 · In the following work, we will be detecting contours, shapes and colors of various geometrical figures in the sample given binary images using Python 2. find_contours, array values are linearly interpolated to provide better precision of the output contours. – Richard. With the assumption that the object is that largest thing in the image, we can find contours then sort for the largest contour using contour area filtering. Feb 13, 2020 · A simple approach is to apply a large Gaussian blur to smooth out the image then adaptive threshold. import cv2 import numpy as np # Load the image image = cv2. if it's dull, like concrete is supposed to be, illumination might just make sky-facing faces appear the same as side walls. Goal . Contour detection is a fundamental technique in computer vision that can be useful in various applications. Assuming you ran cv2. All (binary) segmentation problems can be decomposed into a directed graph - your future employer and examiner will thank me. com/course/python-gui-development-with-pyqt6/?referralCode=75818923A830BA4367E1Support me in Patreon htt Dec 2, 2018 · The reason you get two seperate contours is that you apply Canny edge detector to your grayscale image. N would be the total number of points that represent the contour. It uses the `PySimpleGUI` library for the GUI and `OpenCV` (cv2) for image Mar 9, 2024 · Though Scikit-learn is not typically used for image processing, Scikit-image, which is dedicated to image processing in SciPy, offers straightforward tools for contour detection. com/contour-detection-using-opencv-python-c/📚 Check out our FREE Courses at OpenCV University : https://opencv. Whether you're building a surveillance system that alerts you to intruders or simply experimenting with computer vision, understanding how to detect motion is a foundational skill. Find contours in given image. They usually produce similar results. Retrieval Modes Jun 13, 2022 · # Finding all the lines in an image based on given parameters contours, hierarchy = cv2. CHAIN_APPROX_SIMPLE) #Reverting the original image back to BGR so we can draw in colors img = cv2. Dec 28, 2015 · I am trying to fit minimum bounding boxes to each of these "speckles" shown below. ) since I'm trying to enhance my skills with OpenCV in Python, I would like to know what's the best way of extracting a specific gray tone out of a image with mostly dark colors. Advanced Contour Detection. For better accuracy, use binary images. approxPolyDP() approximates a contour shape to another shape with less number of vertices. Then Loop over all contours. SimpleBlobDetector Example […] Mar 21, 2023 · However, contour detection focuses on capturing closed boundaries, while edge detection highlights all edges, including those within objects. In the image above, the dark connected regions are blobs, and blob detection aims to identify and mark these regions. again 3 days ago · Prev Tutorial: Contours : Getting Started Next Tutorial: Contour Properties. Feb 17, 2015 · This tutorial explains simple blob detection using OpenCV. Here, in this tutorial, we have used the OpenCV edge detecting technique to detect the Contours of an image. Jul 13, 2016 · Because of the lines in the center being removed, the circle is split into many small parts, so if I do contour detection on this, it can only give me each contour separately. Here’s an example:. Check the sample input image here.
dbwv wavejd wuicgl djhf lfmg qwudp fzpcet riui utghsb fxx
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}