how i can extract transition feature of a signature.
3 ビュー (過去 30 日間)
古いコメントを表示
Transition features (TF) records the locations of transitions between foreground pixels and background pixels in a binary image, the foreground pixels being the 1’s and the background pixels being the 0’s. The image is traversed in the following four directions: left to right, right to left, top to bottom and bottom to top. Each time there is a change from ‘0’ to ‘1’ or a change from ‘1’ to ‘0’, then the ratio between the location of the transition and the length/width of the image traversed is recorded as a feature. An averaging algorithm is used to obtain values in the range 0 to 1. The ratios of the x and y positions of the transitions for each of the four directions are recorded, yielding 8 features. In addition to these 8 features, the total number of transitions is also recorded, giving a total of ten features.
1 件のコメント
ebru temiz
2015 年 1 月 10 日
Hi,did you solved this problem.i work signature recogniiation system.And if you have found tf features,i can use of course if you gıve me?
回答 (2 件)
Walter Roberson
2011 年 9 月 23 日
There is no provided MATLAB routine that will calculate these for you. You will need to calculate them yourself, implementing the algorithm described in your posting.
0 件のコメント
Image Analyst
2015 年 1 月 10 日
Sounds like you might be able to use graycomatrix() in the Image Processing Toolbox.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!