Search found 15 matches

by mvrnaidu
Tue Apr 03, 2012 11:15 am
Forum: Image Processing & Document Imaging
Topic: Processing of JP2 images
Replies: 1
Views: 2583

Processing of JP2 images

When I try to process JP2 images, it is processing the first image and from then it is returning imageid = 0, while loading the images from a directory, where as it is not the case with tiff or jpeg. Explain me the reason and process for JP2 images
by mvrnaidu
Sat Mar 17, 2012 12:09 pm
Forum: Image Processing & Document Imaging
Topic: Drawing line on an Image
Replies: 3
Views: 4881

Re: Drawing line on an Image

It is not that case. The imageid returned was 1. Ultimately I could overcome Generic erroe, but couldnt draw a line on existing image.
by mvrnaidu
Sat Mar 17, 2012 7:15 am
Forum: Image Processing & Document Imaging
Topic: Drawing line on an Image
Replies: 3
Views: 4881

Drawing line on an Image

Hi, I am getting "Generic Error" on trying to draw a line on a loaded image. I used the followig code. Please help. x[index] = gdViewer1.GetMouseLeftInDocument(); y[index] = gdViewer1.GetMouseTopInDocument(); //Imaging.draw try { //if (Imaging.DrawCircle(m_TmpImage, x[index], y[index], 10,...
by mvrnaidu
Fri Mar 16, 2012 6:49 am
Forum: Image Processing & Document Imaging
Topic: Moving a line on image with cursor
Replies: 1
Views: 10683

Moving a line on image with cursor

Hi,

I am trying to move a line with mouse on the gdpicture image but couldnt. Please suggest me a way to do it.

Thankyou.
by mvrnaidu
Fri Feb 24, 2012 1:17 pm
Forum: Image Processing & Document Imaging
Topic: merging of images
Replies: 1
Views: 2897

merging of images

Can I merge two images with gdpicture, if yes please let me know.
by mvrnaidu
Thu Feb 23, 2012 1:37 pm
Forum: Image Processing & Document Imaging
Topic: flip horizontal and vertical
Replies: 1
Views: 3107

flip horizontal and vertical

I want to have flip horizontal and flip vertical operations on an image. Can I do them. If yes how?
by mvrnaidu
Wed Feb 22, 2012 1:21 pm
Forum: Image Processing & Document Imaging
Topic: processing of Jp2 images
Replies: 3
Views: 3441

Re: processing of Jp2 images

I am using the latest only, the code is available with support ticket 18282. Please let me know the modifications for the code if any.
by mvrnaidu
Wed Feb 22, 2012 12:37 pm
Forum: Image Processing & Document Imaging
Topic: processing of Jp2 images
Replies: 3
Views: 3441

processing of Jp2 images

I cannot even process jp2 images as a batch, eventhough i gave the entire directory of 80files it is taking only the first one or at most two for processing and then the imageid is being reported as '0'.
by mvrnaidu
Wed Feb 22, 2012 11:39 am
Forum: Image Processing & Document Imaging
Topic: Cropborders with reference point
Replies: 1
Views: 2662

Cropborders with reference point

Imaging.CropBorders(m_CurrentImage, (float)98, ReferencePoint.ReferencePointTopLeft, left, top, width, height);

The above code is reporting some invalid arguments. Please suggest.
by mvrnaidu
Tue Feb 21, 2012 12:24 pm
Forum: Image Processing & Document Imaging
Topic: license issue with image processing
Replies: 1
Views: 2685

license issue with image processing

I am getting the message "This option has been unlocked." when i try to process Jp2 images and this is not the case with tif images. Please suggest. I am attaching the error message also.
license.png
by mvrnaidu
Mon Feb 20, 2012 2:32 pm
Forum: Image Processing & Document Imaging
Topic: Auto Deskew is taking more time
Replies: 7
Views: 5530

Re: Auto Deskew is taking more time

Please check the same problem with the other image processing options also, ie., auto cropping, despeckling etc.
by mvrnaidu
Mon Feb 20, 2012 12:41 pm
Forum: Image Processing & Document Imaging
Topic: Auto Deskew is taking more time
Replies: 7
Views: 5530

Re: Auto Deskew is taking more time

when can we expect the minor release
by mvrnaidu
Mon Feb 20, 2012 8:08 am
Forum: Image Processing & Document Imaging
Topic: Auto Deskew is taking more time
Replies: 7
Views: 5530

Re: Auto Deskew is taking more time

I even released the picture from the buffer by using the following command.
Imaging.ReleaseGdPictureImage(m_CurrentImage);
by mvrnaidu
Mon Feb 20, 2012 8:06 am
Forum: Image Processing & Document Imaging
Topic: Auto Deskew is taking more time
Replies: 7
Views: 5530

Re: Auto Deskew is taking more time

i am using default settings only. I am pasting the code I used below. public GdPictureImaging Imaging = new GdPictureImaging(); foreach (string file in Resources.fileslist) { m_CurrentImage = Imaging.CreateGdPictureImageFromFile(file); Imaging.AutoDeskew(m_CurrentImage); } This is the code I used fo...
by mvrnaidu
Thu Feb 16, 2012 1:48 pm
Forum: Image Processing & Document Imaging
Topic: Auto Deskew is taking more time
Replies: 7
Views: 5530

Auto Deskew is taking more time

I am using AutoDeskew for batch operation and I found that it is taking around 5 - 6 mins for 200 black and white images. Can any one suggest a faster way of doing it.