Search found 15 matches
- 2016-09-23T14:49:06-07:00
- Forum: Bugs
- Topic: Assertion Failed: pixels == info->pixels
- Replies: 8
- Views: 6356
Re: Assertion Failed: pixels == info->pixels
I just tried it on the newest version and measured the performance against a version not compiled with OpenCL. Both finished, but they took the exact same amount of time 1Min32Sec. I'm hoping this suggest it's not using the GPU for some reason.
- 2016-09-18T10:38:21-07:00
- Forum: Bugs
- Topic: Assertion Failed: pixels == info->pixels
- Replies: 8
- Views: 6356
Re: Assertion Failed: pixels == info->pixels
I'll try with the newest version, but shouldn't it not fail halfway? Mine didn't go anywhere as far as I can tell, but it doesn't seem like failing half way is the intended behavior.
- 2016-08-30T16:49:58-07:00
- Forum: Bugs
- Topic: Assertion Failed: pixels == info->pixels
- Replies: 8
- Views: 6356
Re: Assertion Failed: pixels == info->pixels
I was wondering if you had a chance to try this again?dlemstra wrote:My current GPU does appear to use OpenCL with this image and switches to CPU. I will get a new card in a couple weeks that might be able to load it. I will give it another try then.
- 2016-07-05T11:27:14-07:00
- Forum: Bugs
- Topic: Assertion Failed: pixels == info->pixels
- Replies: 8
- Views: 6356
Re: Assertion Failed: pixels == info->pixels
Sure, the image is here: http://eoimages.gsfc.nasa.gov/images/im ... 600.B1.png
If it helps, I'm running a GTX 1080 with the 368.39 drivers and CUDA 8.0.27
Command: convert.exe world.topo.bathy.200407.3x21600x21600.B1.png -resize 25% a.png
If it helps, I'm running a GTX 1080 with the 368.39 drivers and CUDA 8.0.27
Command: convert.exe world.topo.bathy.200407.3x21600x21600.B1.png -resize 25% a.png
- 2016-07-05T10:10:06-07:00
- Forum: Bugs
- Topic: Assertion Failed: pixels == info->pixels
- Replies: 8
- Views: 6356
Assertion Failed: pixels == info->pixels
Hello, I compiled ImageMagick 7.0.2-2Q16 on Windows 10, Static Multi-threaded runtimes, 64 bit distribution, HDRI, OpenMP, OpenCL, Q16 and Studio 2015. Specifically, I wanted OpenCL support. I tried a simple resize of a 300 MB image from NASA and am getting the error: Assertion Failed: pixels ...
- 2015-08-13T11:11:31-07:00
- Forum: Users
- Topic: Align images using reference image
- Replies: 18
- Views: 9460
Re: Align images using reference image
It's overlaying this over the image:
- 2015-08-12T10:10:50-07:00
- Forum: Users
- Topic: Align images using reference image
- Replies: 18
- Views: 9460
Re: Align images using reference image
Wow, you guys are awesome, thanks for the discussion and all the help on this. I just tried it out and it worked very well on everything but the left edge on the first image I uploaded. I've noticed that I've had very good luck with all the documents except that one. I had to use the virtual-pixel ...
- 2015-08-11T10:40:20-07:00
- Forum: Users
- Topic: Align images using reference image
- Replies: 18
- Views: 9460
Re: Align images using reference image
I'm using: Version: ImageMagick 6.9.0-0 Q16 x86_64 2015-02-11 http://www.imagemagick.org Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC OpenMP Delegates (built-in): autotrace bzlib cairo fftw fontconfig freetype fpx gslib jbig jng jpeg lcms lzma pangocairo png ps rsvg tiff ...
- 2015-08-11T10:19:26-07:00
- Forum: Users
- Topic: Align images using reference image
- Replies: 18
- Views: 9460
Re: Align images using reference image
Thank you, here are samples of 2 of the images: http://i.imgur.com/90Sng5H.jpg http://i.imgur.com/KcL6d5D.jpg I have many more of them and would like to align them to eachother. I'll take a look at the link you sent. I also noticed the limereg project. I compiled it, but there are no instructions on ...
- 2015-08-11T09:50:32-07:00
- Forum: Users
- Topic: Align images using reference image
- Replies: 18
- Views: 9460
Align images using reference image
I have a few scanned forms that are cropped differently, a little rotated, and feature other scanning issues. I'd like to make sure that they're all aligned correctly given one reference image. They should be the same dimensions, and the boxes should overlay one on top of the other so when doing ...
- 2015-07-09T10:12:52-07:00
- Forum: Users
- Topic: Help with Trim
- Replies: 6
- Views: 3115
Re: Help with Trim
I forgot the % for the deskew, that fixed it.
- 2015-07-09T10:11:12-07:00
- Forum: Users
- Topic: Help with Trim
- Replies: 6
- Views: 3115
Re: Help with Trim
I found this to work well: convert -density 1200 -deskew 40 20.pdf[0] -deskew 40 -resize 25% +repage t.png; convert t.png -crop \ `convert t.png -virtual-pixel edge -blur 0x15 -fuzz 20% \ -trim -format '%wx%h%O' info:` +repage 20.png Is there a way to properly work the deskew into here? Most of my ...
- 2015-07-09T08:32:16-07:00
- Forum: Users
- Topic: Help with Trim
- Replies: 6
- Views: 3115
Re: Help with Trim
So, would it be something like this: convert c:\20.png -fuzz 99% -fill white -draw "color 0,0 flood
fill" -trim +repage c:\20.out.png?
fill" -trim +repage c:\20.out.png?
- 2015-07-09T08:21:28-07:00
- Forum: Users
- Topic: Help with Trim
- Replies: 6
- Views: 3115
Re: Help with Trim
Thank you, I'll take a look at doing that. Isn't that what fuzz is for though?
- 2015-07-09T08:06:01-07:00
- Forum: Users
- Topic: Help with Trim
- Replies: 6
- Views: 3115
Help with Trim
Hello, I'm having an issue with trim. I have a set of scanned documents I'm trying to automatically process, but trim doesn't seem to be removing whitespaces from them. I've tried with the borders and with fuzz, but no luck. Any help would be much appreciated.