riturajsoni

Results 19 comments of riturajsoni

Dear Weslesun and lluisgomez please specify how to build this code. how to run it

What is the OSError :[ error no.2 coming

thanks for the reply I did this with following files in the path 1. Input files : /textspotter/evaluation-sets/icdar2013-Test/img_1.jpg 2. gt files in : /textspotter/evaluation-sets/icdar2013-Test/segmentations/img_1_GT.txt 3. .png files in : /textspotter/evaluation-sets/icdar2013-Test/segmentations/gt_img_1.png...

Hi michal I did that it is printing 1. print letterInside [ 466.94403076 131.07200623 3. 137. -153.43495178 466.94403076 139.26400757 458.75201416 126.97600555 1. 1. 0. ] 2. print letterInside.shape (12,) what...

The letterInside seems to be single dimenson array therfore **octaves = np.unique( letterInside[:, 2]) IndexError: too many indice** is coming .... the code get stucks here....share if you can help

1. len(letterInside) is coming 12 in present case...so it seems to one Dimensional matrix. What should be the size of the letterInside for the proper result. 2. letterInside = keypointsInside[rectMask,...

Thanks for suggestion although i change it a bit 1. if len(letterInside.shape) == 1: letterInside = np.reshape(letterInside,(1,letterInside.shape[0])).T that gives the letterInside as [12,0] arrangement as simply reshape giving errors and...

thanks i write these lines and able to get (1,12) form 1. if len(letterInside.shape) == 1: letterInside = np.reshape(letterInside, (1,letterInside.shape[0]),order='C') print letterInside.shape # the output of last statement is (1,12)...

yes this is the gt format and same image is taken for the experiment and i have taken this image only..for beginning once results will come i will put more...

i try to check the type of 'a' in the function utils.area it comes out be < tuple, tuple> #def area(a): '''Computes rectangle area''' ``` print type(a) #print a[1] #print...