113,410 questions
0
votes
0
answers
96
views
BufferedWriter Writing Random String as NULL value
I'm working with legacy code, the code was written in java 5 and 6.
Recently they updated the machines where this code is used to use Java 8. They recompiled this old code in JAVA 8 it did not fail ...
3
votes
1
answer
72
views
Stitching image slices using x,y,width,height results in misalignment – what am I missing?
I am trying to reconstruct a full newspaper page from multiple image slices.
Each slice has coordinates encoded in the filename like:
01_<x>_<y>_<width>_<height>.jpg
Example:
...
-5
votes
0
answers
50
views
Cloudflare private image storage possible on free tier plan? [closed]
Is it possible to store a small number of images privately on Cloudflare without a subscription? The main Cloudflare Images page says the service is available on Free tier plans but while following ...
Advice
1
vote
8
replies
114
views
Using Python on my Mac, how do I combine jpg images in a folder, then subsequently split them into separate jpg image files again?
I have a folder containing hundreds of jpg images. I wish to combine them into a single large image (for some processing work), and then subsequently split them out into separate jpg image files with ...
Advice
0
votes
8
replies
182
views
"hello chat" Door
I'm working on some projects in Python and JS.
Lately, I decided to speed up the creation process, only stopping to fix bugs.
I found an image in the root of my backend saying "hello chat" ...
0
votes
0
answers
91
views
Decode barcode from Image in Flutter
I need to decode barcode from captured images in my flutter application in WINDOWS. For example, this Code 39 Barcode image (not a perfect image, but that's the purpose of this question)
I have tried ...
0
votes
1
answer
94
views
Excel VBA Outlook Error "Linked image cannot be displayed..."
I have code to compose and send, or display, an email with an image in it, but the image won't display. I have read a dozen plus blogs on this error and how to use CID in the HTML body, and it seems ...
Tooling
0
votes
0
replies
54
views
Which model is better suited for face recognition in missing or torn images?
I'm working on facial recognition in torn or missing images
I wanted to know if the Dlib model also works on missing images and if the mediapipe model works on missing images.
And if so, which model ...
Advice
0
votes
1
replies
50
views
To what extent can torn pictures be completed?
I'm working on a project to complete missing pictures and color them.
I wanted to know, at what percentage of tears are they no longer dealt with, meaning if I have a picture that is mostly torn, is ...
1
vote
0
answers
69
views
Why do browsers render <image> tags? [duplicate]
I've been playing with a domain-specific web crawler and have bumped into a website that occasionally uses the text <image src="…"> when they mean <img src="…"> - and ...
1
vote
1
answer
54
views
How can I set the source of an image dynamically in React native with expo?
could someone help me dynamically define the source of an image in native React with expo?
because I send to my component this table:
const sidebarContent: SidebarItemData[] = [
{ icon: "...
Advice
0
votes
9
replies
156
views
What would be the best way to extract letters from a game board image?
I write a tool (C# 9) to solve word games like crosswords and others. I am provided with the game board as an image.
I tried various ways to read the board in order to build an in-memory object ...
1
vote
1
answer
27
views
Why isn't the second Modal working to navigate images like the first one is?
I am building a bootstrap website. I have one of the carousels to open in a modal with images. It works so I used the same code in three more modals, giving each a unique ID. The modals on the 2nd ...
2
votes
1
answer
71
views
How can I save an image after altering its color?
I have a small Python code to read and save an image:
import numpy as np
# from scipy.misc import imread, imsave # Not working
from imread import imread, imsave
img = imread('tst-image.jpg')
# print(...
Best practices
0
votes
2
replies
41
views
How to shrink image size on upload for github user-attachments/assets in repo issues?
If a contributer attaches an image in a github issue (or any other comment) it will be uploaded as is. If the image is large this results in poor usability of that post. Is there a way to shrink image ...