Community Profile

photo

Shaik Ahmad


2016년부터 활동

Followers: 0   Following: 0

연락

I am a full-time research scholar in VIT University, Vellore. Currently working in reversible data hiding based on transform and spatial domains.

My Interested areas are Integer wavelet transforms,
Linear algebra, Numerical cryptography, Steganography, Image processing

통계

All
  • Thankful Level 2
  • Quiz Master
  • First Review
  • First Submission
  • CUP Challenge Master
  • Speed Demon
  • Creator
  • Promoter
  • Commenter
  • Solver
  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


What are the best IP cameras to perform real-time video based OCR?
I am working on a problem where I need to read label number of a box when it is moving across to the camera. Currently, I am usi...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


Best sources to develop a single class thin/slim custom deep learning model for object detection?
I am working on a problem, where I need to detect a particular type of objects. I have tried with tensorflow ssd mobilenet model...

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


What are the best alternatives to contour detection?
I am working on contour detection based object detection approaches. But all the contour detection techniques are highly influen...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


How to Read PDF417 bar-codes from the image?
I am working on bar-code (PDF417) detection and recognition from a stack of boxes. The size of the bar-codes are relatively very...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


I have five data points (A, B, C, D, E) in a two dimensional plane. Based on the euclidean distance between these points how can I group them?
I have five data points (A, B, C, D, E) in a two dimensional plane where three points (A, B, D) are close to each other and rema...

대략 5년 전 | 답변 수: 1 | 0

1

답변

질문


What are the best ways to implement an attendance logging system from live video feed using face recognition?
I am working on a face recognition based attendance logging system. Since a live video feed contains multiple images of a same p...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


To work on deep learning, machine learning and computer vision what are the basic packages that one needs to install?
Please list all the packages that are essential for a professional computer vision and deep learning programming.

5년 초과 전 | 답변 수: 0 | 0

0

답변

제출됨


bgchange
Placing an image on top of another image using alpha plane information.

5년 초과 전 | 다운로드 수: 1 |

질문


What are the practical use cases of data hiding?
I am working on image based reversible data hiding. I know this area is very young and currently concentrated by academic resear...

5년 초과 전 | 답변 수: 0 | 0

0

답변

질문


How to detect a stalled object in a video?
I am working on an online multiple object detection and tracking problem. I want to detect the objects which are moving previous...

5년 초과 전 | 답변 수: 1 | 0

1

답변

질문


how can assign numbers to detected bounding boxes?
I have a final bounding box attributes and an Image. I need to assign a number to each bounding box from the top left side in a ...

5년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

6년 초과 전

문제를 풀었습니다


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

6년 초과 전

문제를 풀었습니다


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

6년 초과 전

문제를 풀었습니다


Specific Element Count
Given a vector _v_ and a element _e_, return the number of occurrences of _e_ in _v_. Note: NaNs are equal and there may be n...

6년 초과 전

문제를 풀었습니다


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

6년 초과 전

문제를 풀었습니다


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

6년 초과 전

문제를 풀었습니다


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

6년 초과 전

문제를 풀었습니다


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<http://upload.wikimedia.org/wikipe...

6년 초과 전

문제를 풀었습니다


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

6년 초과 전

문제를 풀었습니다


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

6년 초과 전

문제를 풀었습니다


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

6년 초과 전

문제를 풀었습니다


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

6년 초과 전

문제를 풀었습니다


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

6년 초과 전

문제를 풀었습니다


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

6년 초과 전

문제를 풀었습니다


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....

6년 초과 전

문제를 풀었습니다


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

6년 초과 전

문제를 풀었습니다


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

6년 초과 전

문제를 풀었습니다


For a rectangle, if x is the length and 2x is width. Then find out x from the area of the rectangle?
For a rectangle, if x is the length and 2x is the width. Then find out x from the area of the rectangle? if the area is equal...

6년 초과 전

문제


For a rectangle, if x is the length and 2x is width. Then find out x from the area of the rectangle?
For a rectangle, if x is the length and 2x is the width. Then find out x from the area of the rectangle? if the area is equal...

6년 초과 전 | 1 | 솔버 수: 87

더 보기