Search found 5 matches
- 2011-03-04T08:24:08-07:00
- Forum: Users
- Topic: the how-do-I-remove-the-background problem
- Replies: 6
- Views: 17736
Re: the how-do-I-remove-the-background problem
Hi Anthony, thanks for your detailed comments! So, in the end I will have to edit each picture individually... :( I hoped that there might be one general and flexible solution that can be applied to all pictures. I guess I will come again with more specific question for single pictures :) Thanks a ...
- 2011-03-03T12:26:43-07:00
- Forum: Users
- Topic: the how-do-I-remove-the-background problem
- Replies: 6
- Views: 17736
the how-do-I-remove-the-background problem
Hello, I am trying to remove the background of plenty pictures. Unfortunately, the background of these pictures are neither solid nor always the same. Since I have to do the removal for more than 100 pictures, I would like to do that using a shell script. First, some example pictures that resemble ...
- 2010-08-04T17:23:57-07:00
- Forum: Users
- Topic: cutting picture and resamble the pieces
- Replies: 6
- Views: 13998
Re: cutting picture and resamble the pieces
Hi, Can you provide a link to an example image that you need to crop? Unfortunately, not. That are pictures from a non public database and restricted to solely scientific usage. But I found something that could give an impression of what I am talking about: http://www.redbox.de/news/_data/zoom ...
- 2010-08-03T01:31:26-07:00
- Forum: Users
- Topic: cutting picture and resamble the pieces
- Replies: 6
- Views: 13998
Re: cutting picture and resamble the pieces
Hi, thanks for the detailed reply. I found another way: #!/bin/bash declare dir=Reassembled if [ ! -d $dir ]; then mkdir $dir; fi declare -a eqORgt eqORgt=("-eq" "-gt"); for k in *.tif; do op=$(($RANDOM % ${#eqORgt[@]})) noEntries=25 count=0 numbers=() files=() # crop the interesting part convert $k ...
- 2010-07-28T09:50:25-07:00
- Forum: Users
- Topic: cutting picture and resamble the pieces
- Replies: 6
- Views: 13998
cutting picture and resamble the pieces
Hello, I would like to cut pictures into pieces and then assemble the pieces randomly into a new picture with the same size and dimension of the original picture. Unfortunately, I could not find an appropriate command. So I tried to use convert testorig.png -crop 25% test_%d.png and tried to write a ...