Mahmoud Afifi
Apple
Followers: 0 Following: 0
Programming Languages:
Python, C++, Java, C#, MATLAB, HTML
Spoken Languages:
Arabic, English
Python, C++, Java, C#, MATLAB, HTML
Spoken Languages:
Arabic, English
統計
All
ランク
of 155,189
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
送信済み
Sensor-Independent Illuminant Estimation Using Deep Learning
Sensor-Independent Illumination Estimation for DNN Models (BMVC 2019)
3年以上 前 | ダウンロード 1 件 |
送信済み
CIE XYZ NET
Matlab code for the paper: CIE XYZ Net: Unprocessing Images for Low-Level Computer Vision Tasks
3年以上 前 | ダウンロード 1 件 |
送信済み
WB color augmenter
WB augmenter that can improve the accuracy of image classification and semantic segmentation (ICCV 2019)
3年以上 前 | ダウンロード 1 件 |
送信済み
Deep_White_Balance
Reference code for the paper: Deep White-Balance Editing, CVPR 2020 (Oral).
3年以上 前 | ダウンロード 3 件 |
送信済み
Image recoloring without a target image
Matlab implementation of 'Image Recoloring Based on Object Color Distributions' Eurographics (short papers) 2019.
3年以上 前 | ダウンロード 2 件 |
送信済み
Image white balancing
White balance camera-rendered sRGB images (CVPR 2019)
3年以上 前 | ダウンロード 3 件 |
送信済み
Multi-Scale Photo Exposure Correction
Project page of the paper "Learning Multi-Scale Photo Exposure Correction" (CVPR 2021).
3年以上 前 | ダウンロード 4 件 |
送信済み
Poisson image editing
Matlab implementation of Possion image editing (seamless cloning and mixing gradients)
3年以上 前 | ダウンロード 7 件 |
回答済み
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...
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...
4年以上 前 | 0
回答済み
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_...
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_...
4年以上 前 | 0
回答済み
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...
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...
4年以上 前 | 0
回答済み
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...
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...
4年以上 前 | 0
回答済み
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...
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...
4年以上 前 | 0
送信済み
Eyeglasses detection on face images using PCA
Detecting the presence of eyeglasses on face images using PCA
4年以上 前 | ダウンロード 1 件 |
回答済み
Data Augmentation not working
Check this <https://www.mathworks.com/matlabcentral/fileexchange/72966-wb-color-augmenter?s_tid=prof_contriblnk augmenter>. I...
Data Augmentation not working
Check this <https://www.mathworks.com/matlabcentral/fileexchange/72966-wb-color-augmenter?s_tid=prof_contriblnk augmenter>. I...
4年以上 前 | 0
回答済み
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>
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>
4年以上 前 | 0
送信済み
Color temperature tuning
A camera pipeline that allows accurate post-capture white balance editing (CIC best paper award, 2019)
5年弱 前 | ダウンロード 3 件 |
回答済み
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...
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...
5年弱 前 | 0
回答済み
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 ...
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 ...
5年弱 前 | 0
回答済み
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:/...
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:/...
5年弱 前 | 0
回答済み
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 ...
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 ...
5年弱 前 | 0
回答済み
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...
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...
5年弱 前 | 0
回答済み
Image labeler using data augmentation
Check this <https://www.mathworks.com/help/deeplearning/ref/imagedataaugmenter.html Link> for geometric augmentation (rotate, tr...
Image labeler using data augmentation
Check this <https://www.mathworks.com/help/deeplearning/ref/imagedataaugmenter.html Link> for geometric augmentation (rotate, tr...
約5年 前 | 0
回答済み
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...
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...
約5年 前 | 3
回答済み
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...
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...
約5年 前 | 3
回答済み
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...
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...
5年以上 前 | 0
回答済み
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...
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...
5年以上 前 | 0
回答済み
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...
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...
5年以上 前 | 0
回答済み
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...
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...
5年以上 前 | 0