Frage


writing multiple video files in a folder
I have some videos suppose 10 in number like 1.avi, 2.avi,...,9.avi,10.avi. I am reading those videos, then extracting their fra...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Query related to inflated3D supporting function in activity recognition from video and optical flow data using deep learning
I was going through an example given in the following link. There I found a supporting function "Inflated3D" under the sub-secti...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to make number of frames equal of several videos having different length and having different number of frames?
I have several videos of different lengths. Correspondilgy, every video has got different number of frames. I want to make every...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
app design - make exe file
I think the follwoing link will help: https://www.mathworks.com/videos/getting-started-standalone-applications-using-matlab-com...

mehr als 4 Jahre vor | 1

| akzeptiert

Frage


problem in saving/writing 3D images.
I had 30 2D images. I concatenated it and made it a 3D image. The 2D and 3D images were of uint8 datatype. I wanted to save or t...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Query regarding using image3Dinputlayer
I am designing a 3D CNN. I have 3D images whose first two dimenisons are height and width. The third dimesion is number of image...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem in imwrite command
I am stuck in a piece of code. Sometimes it works absolutely fine and sometimes the same code shows error. Let me explain the en...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Calling videos from a folder in every iteration
clc; clear all; close all; number=45; strng=num2str(number); Folder = 'D:\project\Fingerspelling pics\'; for k=1:length(st...

etwa 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Callback functions for displaying videos
I am making a GUI in Matlab using AppDesigner. It displays a video after pressing the push button. This video is already stored ...

etwa 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Removing blurred part in intermediate images in morphing of images.
I am working on image morphing of two hand gestures. I also got intermediate images. I am attaching here 1)Source Image 2) Targe...

etwa 5 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
AppDesigner questions: 1) Image path 2) numerical value output
For your 1st query: Select image from the component library (on the left side of App Designer) and then in the component browse...

etwa 5 Jahre vor | 0

Frage


extract key frames from video
I am writing a code having following steps to extract key frames: 1) Read frames from video (let us suppose we have 700 frames)...

etwa 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


draw human hand using geometrical figures?
I want to draw a human hand model using matlab. Can I draw it using geometrical figures like rectangle, cylinder, circle or some...

etwa 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


hand gesture synthesis/animation using inverse kinematics
I want to perform hand gesture synthesis or hand gesture animation using inverse kinematics or robotics toolbox. Can anyone sugg...

mehr als 5 Jahre vor | 0 Antworten | 0

0

Antworten

Gelöst


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

mehr als 6 Jahre vor

Gelöst


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

mehr als 6 Jahre vor

Frage


Fibonacci Series in cody Challenge
I am solving Fibonacci series in Cody challenge. I have written the following code and it is running well in MATLAB editor. here...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Gelöst


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

mehr als 6 Jahre vor

Frage


Problem 10 of MATLAB cody challenge
I was trying to solve this question in cody challenge: Problem 10. Determine whether a vector is monotonically increasing. I tri...

mehr als 6 Jahre vor | 3 Antworten | 0

3

Antworten

Gelöst


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

mehr als 6 Jahre vor

Gelöst


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

mehr als 6 Jahre vor

Gelöst


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

mehr als 6 Jahre vor

Gelöst


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

mehr als 6 Jahre vor

Gelöst


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

mehr als 6 Jahre vor

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

mehr als 6 Jahre vor

Gelöst


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

mehr als 6 Jahre vor

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

mehr als 6 Jahre vor

Gelöst


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

mehr als 6 Jahre vor

Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

mehr als 6 Jahre vor

Frage


not providing a fixed input
suppose I write a code: function c=sum_of_two_numbers(a,b) a=7; b=8; c=a+b; end here I have provided values of a an...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Mehr laden