Fake Name Johnson
Followers: 0 Following: 0
I created this account only because this website was being broken. I needed a way to troubleshoot.
Statistiques
0 Questions
2 Réponses
RANG
83 259
of 295 467
RÉPUTATION
0
CONTRIBUTIONS
0 Questions
2 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
0
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
How can I get the average color of a ROI (mask) ?
There are other ways to do this, but let's be simple. Assuming a single-channel logical mask: % an image (RGB, uint8) inpict ...
6 mois il y a | 0
How can I create a for loop that takes the number 500 and multiplies it by 1.1 every 7 steps (7,14,21,...), meaning that i want the answer as follows: 500.... 500*1.1....500*1.1*1.1....500*1.1*1.1*1.1 etc
Here's a start a = 500; k = 1.1; p = 0:5; s = 7; x = a*k.^p; x = repelem(x,s) just adjust p as needed to get the desire...
plus de 3 ans il y a | 0