Questions tagged [save-image]
186 questions
1
vote
1 answer
How to save images properly classified with CNN?
Handwriting recognition problem with CNN. There is a requirement: from 10000 test images, save 1000 images (.png or .jpg)accurate classified each folder of 100 images (0 -> 9). How do I do? i need an instruction about code. thanks! code :
import…

Jhonny
- 11
- 2
1
vote
1 answer
How to scan an image and save it with normal size in c#
I want to scan a page and save it automatically. This code works well but the problem is an image that creates and then it saves is too big! it creates an image with the size of 30Mb!
How can I change this code to save an image with normal…

Flash
- 85
- 10
1
vote
1 answer
cv2 imwrite and german letters ("ä, ü, ö")
I wrote a script to manipulate some pictures with cv2 in python.
Now I need to save these files, but some of the filenames contain german letters ("ä, ü, ö").
Unfortunately it seems the cv2function imwrite() can't handle this and writes the…

Lactose
- 13
- 6
1
vote
2 answers
How to save processed images to different folders within a folder in python?
I have code with looks through a folder 'Images' and then subfolders and processes all those images.
I now need to save those images to a parallel directory, i.e. a folder called 'Processed Images' (in same directory as 'Images' folder) and then to…

user7285642
- 11
- 1
- 2
1
vote
1 answer
Python write function is not saving all images
I am trying to download images from hyperlinks (example). To accomplish this I am using the following function:
def download_logos(lst):
image_url = lst[1]
img_data = requests.get(image_url).content
df.append([lst[0], img_data, lst[2]])
…

Oxbowerce
- 430
- 5
- 14
1
vote
0 answers
Yii2-Unable to send image name via client interface
I am working on Yii2. I have developed an API which will save the incoming records from the client. A client can send an image so I am saving its name and then uploading in the folder. Along with the name of the image I am also sending data with it.…

Moeez
- 494
- 9
- 55
- 147
1
vote
2 answers
How save a sattelite image in earth engine?
I'm searching how to export an image from earth engine to the drive.
But I would like my image to be a sattelite one.
How can I do it ? Is it possible?
Thank you in advance.
I have already read the doc of earth engine. I find this programm :
var…

Antoine Guil
- 21
- 1
- 3
1
vote
1 answer
Picasso target from inside getView() of an Adapter
I am trying to download and save images inside the getView() function of an adapter using a Picasso target. I have a url which points to an image. This image gets saved on the phone. If the image has already been saved, I retrieve it from the phones…

Ben Holmes
- 11
- 3
1
vote
2 answers
nodejs resize and save image from remote server
node js resize and save image from remote server.
Hi,
How can I resize image without to save locally and then to save it.
when I run bellow code, I get error: "Error: Input buffer contains unsupported image format"
code:
var fs = require('fs');
var…

Michael Fedorov
- 81
- 2
- 10
1
vote
2 answers
Using webrtc for android,how to save a image in the video call?
I don't know how to get the video frame , so I can't save the image.
Give me some tips. Thanks a lot.

fancyT
- 39
- 8
1
vote
1 answer
Save ImageEnView and a Label on it as Png in delphi
I Put a TImageEnView on my form and put a Label on the TImageEnView.
I want to save this parent and child as one Png or Jpg on my hard drive.
I write this code :
CharLbl.Font.Size := I;
CharLbl.Top:=22;
…

sina
- 331
- 4
- 12
1
vote
1 answer
Python Pillow resize images trouble: it runs well but there're no images
I'm learning Python and try to use Pillow to resize images in a folder, then save them to another folder with the same filename. However, the program runs well, when I check the destination folder, there're no images...
My code is as below:
from…

Sophie Lu
- 11
- 1
1
vote
2 answers
how to insert noise and save multiple images in different folders using a loop?(matlab)
I am new in image processing and I want help. I have a folder (dataset) that contains 1000 images and I want to insert noise 'salt & pepper' with different density noise (0.01,0.02 and 0.03) , I used this line to do this:
im =…

yosra
- 65
- 6
1
vote
4 answers
Uploading image file to server asp.net
I have an asp.net project and I am saving selected image to NewUrunler1 file and I am saving image's path in my database. In local, it works without a problem but since I moved my project to my godaddy host, saving method gives an error. Here is my…

Batuhan Ozdal
- 81
- 10
1
vote
1 answer
Saving an image without ShowFileDialog
My program crop the image that you load from the disk and save as a two jpg. files. I used 2 ShowFileDialog one after another but my professor said it should work differently. First ShowFileDialog it's okay, because we type a file name, and show the…

Patryk Góral
- 13
- 3