Traitement d'image avec MATLAB !!!
stof
-
shady5 -
shady5 -
bonsoir !
voila je travail sur un projet de reconnaissance de caractères(manuscrits) et pour calculer les moments discrets orthogonaux d'une image je dois la décomposé en blocs et suivre un algorithme précis qui est :
Step 1: Consider each line y of the image f and find the object
level intervals in line y.
Step 2: Compare intervals and blocks that have pixels in line y -1.
Step 3: If an interval does not match with any block, this is the
beginning of a new block.
Step 4: If a block matches with an interval, the end of the block
is in the line y.
mon problème c'est que je suis débutant avec MATLAB je ne sais par ou commencé pour programmé ca !!!
voila je travail sur un projet de reconnaissance de caractères(manuscrits) et pour calculer les moments discrets orthogonaux d'une image je dois la décomposé en blocs et suivre un algorithme précis qui est :
Step 1: Consider each line y of the image f and find the object
level intervals in line y.
Step 2: Compare intervals and blocks that have pixels in line y -1.
Step 3: If an interval does not match with any block, this is the
beginning of a new block.
Step 4: If a block matches with an interval, the end of the block
is in the line y.
mon problème c'est que je suis débutant avec MATLAB je ne sais par ou commencé pour programmé ca !!!
A voir également:
- Traitement d'image avec MATLAB !!!
- Reconsidérer le traitement de vos informations à des fins publicitaires - Accueil - Réseaux sociaux
- Image iso - Guide
- Traitement de texte gratuit - Guide
- Ce logiciel gratuit et léger est parfait pour remplacer Word, même sur un vieux PC - Guide
- Reduire taille image - Guide
3 réponses
Bonjour
Vous trouverez dans Matlab une fonction imread qui permet de lire une image et de renvoyer une matrice.
Il est assez facile ensuite de parcourir les lignes mat(i,:) ou les colonnes mat(:,j)
Bon courage et bonne journée
Vous trouverez dans Matlab une fonction imread qui permet de lire une image et de renvoyer une matrice.
Il est assez facile ensuite de parcourir les lignes mat(i,:) ou les colonnes mat(:,j)
Bon courage et bonne journée