photo

Mahmoud Afifi


Last seen: 3 maanden ago Active since 2019

Followers: 0   Following: 0

Message
Programming Languages:
Python, C++, Java, C#, MATLAB, HTML
Spoken Languages:
Arabic, English

Statistics

All
MATLAB Answers

0 Questions
22 Answers

File Exchange

41 Files

RANK
2.266
of 298.896

REPUTATION
28

CONTRIBUTIONS
0 Questions
22 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
12

RANK
640 of 20.655

REPUTATION
2.816

AVERAGE RATING
4.40

CONTRIBUTIONS
41 Files

DOWNLOADS
85

ALL TIME DOWNLOADS
24410

RANK

of 162.825

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Revival Level 3
  • Knowledgeable Level 1
  • Personal Best Downloads Level 4
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • First Answer

View badges

Feeds

View by

Answered
GAN problem at dlnetwork
Can you please give a link to the original code? In meanwhile, have a look at this <https://github.com/zcemycl/Matlab-GAN githu...

ongeveer 5 jaar ago | 0

Answered
Reconstruct an image after finding seam to remove in seam carving
Check this <https://www.mathworks.com/matlabcentral/fileexchange/62626-seam-carving-for-content-aware-image-resizing?s_tid=prof_...

ongeveer 5 jaar ago | 0

Answered
Oscillation of classification accuracy of test images - VGG - transfer learning
I think it can be improved with augmentation. Matlab provides different augmentation options. Also I refer you to our WB augment...

ongeveer 5 jaar ago | 0

Answered
How to check number of augmented images from imageDataAugmenter
ImageDataAugmenter does the augmentation during image loading, which means it doesn’t rebalance your data. It applies the select...

ongeveer 5 jaar ago | 0

Answered
what is the difference between normal image and augmented image data as input to convolutional neural network ?? why augmented image is showing more accuracy ??
Data augmentation adds more variety to what the CNN sees during training. This augmentation could be a single pixel shit that in...

ongeveer 5 jaar ago | 0

Answered
Data Augmentation not working
Check this <https://www.mathworks.com/matlabcentral/fileexchange/72966-wb-color-augmenter?s_tid=prof_contriblnk augmenter>. I...

ongeveer 5 jaar ago | 0

Answered
How to remove color cast from the image
Check this <https://www.mathworks.com/matlabcentral/fileexchange/73428-image-white-balancing?s_tid=prof_contriblnk Code>

ongeveer 5 jaar ago | 0

Answered
Segment color patch from test chart and compute RGB/L*a*b* values of each color patch
You can use deltaE metric and colors that have distances less than 2 can be grouped together. Check this link <http://zschues...

meer dan 5 jaar ago | 0

Answered
how to augment image data only for a specific class?
You can use a custom function to augment the data of this class before training. You can try this one if the problem is related ...

meer dan 5 jaar ago | 0

Answered
color similarity in CIElab color space
You can use deltaE to measure the difference between colors. It works in Lab space. Check this link for more information <http:/...

meer dan 5 jaar ago | 0

Answered
Is it possible to use pretrained network like alexnet with a new dataset that has different category?
You need to change the last fully connected layer of Alexnet with a new one with the same number of expected output (either for ...

meer dan 5 jaar ago | 0

Answered
Exposure correction: White balancing & GammaCorrection
If your photos are in raw format, then you can easily correct everything. But if your photos are already rendered, then it becom...

meer dan 5 jaar ago | 0

Answered
Image labeler using data augmentation
Check this <https://www.mathworks.com/help/deeplearning/ref/imagedataaugmenter.html Link> for geometric augmentation (rotate, tr...

meer dan 5 jaar ago | 0

Answered
Multiple Input Single Output Segmentation using Deep Learning
I have uploaded a more efficient code for a similar task. You can find it <https://www.mathworks.com/matlabcentral/fileexchange...

meer dan 5 jaar ago | 3

Answered
how to use multiple input layers in DAG net as shown in the figure
I just released an example Matlab code of how to implemenet multiple-input CNN in Matlab 2019b. You can find it here: https://w...

meer dan 5 jaar ago | 3

Answered
How can I white balance an image based on part of the image I know is white?
Try this one: http://130.63.97.192/WB_for_srgb_rendered_images/demo.php Reference: When Color Constancy Goes Wrong: Correcti...

bijna 6 jaar ago | 0

Answered
How to apply the same white balance to a series of images in matlab?
You can use any simple algorithm to estimate the illuminant value instead of manually picking it. Here is an example of using gr...

bijna 6 jaar ago | 0

Answered
How to white balance the each RGB components of an image?
You can apply diagonal white balance correction to raw-RGB images that are a linear representation constructed at the begining o...

bijna 6 jaar ago | 0

Answered
GammaCorrection/ White balance
Try this one: http://130.63.97.192/WB_for_srgb_rendered_images/demo.php Reference: When Color Constancy Goes Wrong: Correcting...

bijna 6 jaar ago | 0

Answered
How Can I change the read only property of "layers" of DAGNetwork?
You cannot change it directly. However, you can create a new layer with the existing/new values. Then, you can replace the exist...

bijna 6 jaar ago | 1

Answered
multiscale retinex
check https://www.mathworks.com/matlabcentral/fileexchange/26523-the-inface-toolbox-v2-0-for-illumination-invariant-face-recogni...

bijna 6 jaar ago | 0

Answered
how to use multiple input layers in DAG net as shown in the figure
One idea is to feed the network with concatenated inputs (e.g., image1;image2) then create splitter layers that split each input...

meer dan 6 jaar ago | 5

| accepted