Questions tagged [imageloader]
27 questions
2
votes
1 answer
How to get pixel RGB values from string images? .get doesn't work with imageLoader (Processing)
I'm trying to get pixel values from images selected randomly from a folder with every 2 seconds. For example i can get pixel brightness from a PImage easily. but don't know how to get when I have String images from a folder.
I have also tried array…

Alperen Sahin
- 23
- 3
2
votes
0 answers
volley imageloader imagelistener just show the the errorImageResId
For fetching images and showing them in a recycler view I used volley imageloader,
Pic_class.java
public class Pic_class {
//Data Variables
private String url;
private String name;
//Getters and Setters
public String…

user7747790
- 35
- 3
1
vote
0 answers
React Native - TurboModuleRegistry.getEnforcing 'ImageLoader' issue
Cannot startup ios app after upgrade RN version from 0.59.9 to 0.62.2. Have no idea where the issue is and how to fix it. Help please!

Данила Никонец
- 205
- 2
- 9
1
vote
1 answer
webpack import files dynamically while build
I have webpack + typescript project that has about 1000 images. I also have a file that describes this images like this:
[{
code: 'imageACode',
alt: 'imageAAlt',
source: './pathToA.jpg'
}]
Same code for B,C,D and other 997 images I got. At…

deathangel908
- 8,601
- 8
- 47
- 81
1
vote
1 answer
How to move loading progress bar to top?
I'm using fresco library to load images from web.Also fresco supports show loading bar to give user info how much downloaded is image.But default position of progress bar is bottom and i wanna move it to top.How can i do that?
I read somewhere i…

uzaysan
- 583
- 1
- 4
- 18
0
votes
0 answers
PyTorch: Data Loader for multiple classes with train / test subfolders
Struggling with PyTorch
My folders are organized as such:
imgs
|
|_classA
|_train
|_img1.png
|_img2.png
|_test
|_img20.png
|_img21.png
|
|
|_classB
|_train
|_test
...
And I would like for each class (!) load data from…

Alex
- 340
- 2
- 13
0
votes
0 answers
Why is this RegexLabeller function generating an error in this notebook?
I'm working in a notebook for fastai that previously worked correctly but now is generating an error.
I think the error is due to this newly added labeling function, RegexLabeller:
https://docs.fast.ai/data.transforms.html#regexlabeller
The cells in…

brooksjordan
- 1
- 1
0
votes
2 answers
I can predict one image but not a set of images with a pytorch resnet18 model, how can i predict a set of images in a list using pytorch models?
x is a list of (36, 60, 3) images. I am trying to predict with a pytorch pretrained resnet18 the output on my images. I took x as a list of 2 images. when I take only 1 image, i get the prediction with no errors as it follows:
im = x[0]
preprocess =…

Rayane
- 11
- 2
0
votes
0 answers
Android - DisplayImageOptions cacheOnDisk - How long it cache on my disk or forever?
I'm using ImageLoader and I use option ".cacheOnDick(ture)". I just need to know, how long that picture are stay in my disk? or It stay forever?

Buzusima
- 1
- 1
0
votes
1 answer
Loading image from a url works fast in one device(Samsung M30) but the same image is taking time to load in another device
Basically, I'm loading images from url using Glide image loader. Most of the images are loading slowly(nearly a minute) when I tested with Redmi Note 7 pro, Vivo devices but the same images are loaded within 3 seconds in Samsung M30 devices.All the…

Arvind
- 99
- 1
- 10
0
votes
1 answer
Imageloader Several Images To ViewPager
The following is part of code that retrieves images from a DB to a viewpager using volley. How can i have the seven pictures loaded to the imageview (LOAD ALL IMAGES location).
If i type any picture at LOAD ALL IMAGES location independently e.g…

NyP
- 499
- 4
- 18
0
votes
1 answer
npm run build is not including /public/images/images.png
I am just testing the React Boilerplate with Material UI, and I am using some png images (stored in /public/images/). If I npm start the project load those images like a charm, but once I type in npm run build the builded project does not load the…

assembler
- 3,098
- 12
- 43
- 84
0
votes
1 answer
Uncaught TypeError: Object(...) is not a function in the browser
I'm trying to use Ionic Image Loader for Image Loading and caching. There is no error at the time of compiling but in the browser, it shows the following error. I'm pasting details from my package.json file. I'm new to ionic and angular. Please let…

Anchla
- 3
- 1
- 2
0
votes
0 answers
Trying to display image on sphere
I am trying to display an image on the sphere using Three.js,unfortunately it shows the background but without the sphere, how do I display the image on the sphere? Thanks for your time
code below:
import React, {Component} from 'react';
import *…

Camille Basbous
- 299
- 5
- 11
- 34
0
votes
1 answer
Wrong output image path after wepack compile
I have used webpack for my project.After compiling webpack background images stored in dist/img folder but in css file it is showing dist/img/filename..so image loading not properly...if image path ../img/file it will works..how i can do this..
this…

Sandeep Nambiar
- 1,656
- 3
- 22
- 38