image tag

106 questions


1 answers
47 views
0
Unable to load pygame image

import pygamefrom pygame.locals import*import sysdefmain(): (w,h) = (400,400) (x,y) = (200,200) pygame.init() screen=pygame.display.set_mode(w,h), 0,32) screen=pygame.display.get_surface() pygame.disp...

2 years ago

1 answers
85 views
0
I'd like to take a picture of the fish in the aquarium with a camera and track its location, what kind of method would you recommend?

I'd like to show the fish tank from the top with a camera and track the location of the fish from the image, but what kind of method is appropriate?I tried hsv conversion using opencv and tracked it w...

2 years ago

1 answers
104 views
0
Saving Python PILs in Index Mode

I have a question about what to do when I read an index mode image in Python's image processing library PIL.Read the png (index mode) image and change the pixel value as shown in the code below.Attemp...

2 years ago

1 answers
111 views
0
Upload images → Arrange until the specified size → Save as a single image

What should I do if I want to implement the following?·Image upload·Arrange until the specified size (in XY direction)·Save as a single imageQuestion·After uploading the image, I think I saw an ImageM...


1 answers
47 views
0
I want to pinch in and out the image displayed on Swift.

I was able to display the image and recognize the pinch, but it didn't work even after looking at various sites.(I tried to rewrite it in my own way)How can I set zoom as a pinch event?

2 years ago

1 answers
74 views
0
I want to use the same image (ImageView) in Android studio java language.

I am creating a board game application in Android studio java language.I want to display the same image every time I tap it, but I don't know how to do it.The image displays the image in a position th...


1 answers
82 views
0
I can't open the jpeg file saved in screenshot of Puppeteer.

Running Puppeteer in node.js.I accessed Google's top page with the following code and saved the screenshot as a jpg file.const supplier=require('puppeter');browser = wait supplier.launch({headless:fal...


2 answers
93 views
0
Static image file format for uncompressed HDR (High Dynamic Range) images

Look for static image file formats that can store HDR (High Dynamic Range) images uncompressed.I think HEIF and JPEG-HDR can store HDR, but I think these are irreversible compression files.I think the...

2 years ago

1 answers
111 views
0
I want to use PHP and HTML on Wordpress to display the image on the confirmation screen after POSTing the form.

I would like to upload the image from the form on the front page using PHP and HTML on Wordpress, and display the image on the confirmation screen on the fixed page after POST transmission.Using the f...

2 years ago

2 answers
109 views
0
UIImage→ NSData Conversion Questions

You are trying to convert the UIImage object to the NSUserDefaults type in order to save it to NSUserDefaults.Use the UIImagePNGRepresentation or UIImageJPEGRepresentation methods to I understand that...

2 years ago
« - 5 - »

© 2024 OneMinuteCode. All rights reserved.