1.First download and install x-plore,if you don’t have x-Plore just Google it.
2.Now open the X-Plore and press Zero(0) then check you have marked the “Show the System Files”.
3.After you done the above step now go to the file:///C:/Sys/Data/Mmcstore
4.If you found the above path then press the option “3” to set the Hex-Viewer.
5.Now look the third column you can see the code like ! TMSD02G (c??”?x???3?3?3?3?3) .Now see the characters between ‘?’ because it is your password 33333.
6.You mayn’t able to access the path file:///C:/Sys/Data/Mmcstore if you don’t set the password for the memory card.
In this tutorial, I will show you how to draw a circle in OpenCV. OpenCV comes with lots of built-in functions that make our life easier especially when we are working on image processing . And there is a function called circle in OpenCV which is used to draw a circle. This function takes following parameters: 1. Image : Takes an image object 2. Center : Center point coordinates 3. Radius : Radius of the circle 4. Color : Takes color in BGR format 5. Thickness : By default set to 1 (optional) 6. Line Type : By default set to 8-connected.It can also be LINE_AA or 4-connected (Optional) 7. Shift: Shifts fractional bits in the point coordinates of center and radius (Optional) Especially when we are creating closed shapes. Thickness plays an important role. Here if the negative thickness is passed in this function or any other function which creates a closed shape(rectangle, polygon, etc). Then it creates a filled shape (filled with color). Negative Thickness Filled Circle Positive ...
Comments
Post a Comment