how can i get matlab code for this paper

5 Ansichten (letzte 30 Tage)
samir mohamd
samir mohamd am 10 Jul. 2017
Kommentiert: Image Analyst am 18 Apr. 2024
i have paper about multi object tracking "Stable Multi-Target Tracking in Real-Time Surveillance Video" i need the dataset and marlab code

Antworten (8)

Walter Roberson
Walter Roberson am 10 Jul. 2017
  10 Kommentare
Walter Roberson
Walter Roberson am 11 Jul. 2017
The paper states that in order to reach the real-time goals, that some operations were moved into different threads. MATLAB does not have threads. MATLAB does support parallel processing when using the Parallel Computing Toolbox.
As graphics is involved and graphics cannot be done in workers, you would pretty much be forced into one of a few approaches:
  1. use R2017a or later with its pollable data queues to run parfor or spmd and communicate collected data back to the main process
  2. use any of a number of versions of MATLAB and use parfor or spmd to collect a somewhat small amount of data and let the parallel construct finish so that the data can be processed, continually starting and ending parallel processing to be able to grab bits of data; or
  3. use R2013b or later with parfeval to start a session that does the data collection, and use a shared file or shared memory segment or tcp to communicate the data back to the main program; or
  4. start a different MATLAB session entirely to do the data collection and communicate it back to the main program with a shared file or shared memory segment or tcp; or
  5. use Instrument Control or Data Acquisition toolbox and callbacks when data is ready to have the main process gather data from the devices
Walter Roberson
Walter Roberson am 11 Jul. 2017
I would suggest that you consider the possibility that it is really not feasible for a MATLAB beginner to accomplish a project of this magnitude within the time-frame you have available to you. It is not easy to get high performance data collection with MATLAB.
The paper implies that they used a Real-Time system to do the work, rather than a general purpose operating system. That would imply something like Real-Time Linux, or a well-tuned Linux or Unix, or something like Simulink Real-Time product, or an operating system such as QNX.

Melden Sie sich an, um zu kommentieren.


Venkat Bhargav
Venkat Bhargav am 5 Mär. 2019
How can i get code for my major project "wireless information and power transfer in multiuser ofdm systems".Please suggest me
  1 Kommentar
Walter Roberson
Walter Roberson am 7 Mär. 2019
You write the code, or you have the university hire someone to write it for you.
(If the university hires the person then they set out the scope of work to remain within the bounds they are comfortable with for plaigarism purposes. If you hire someone to do the work yourself, the university might decide that you are committing academic misconduct.)

Melden Sie sich an, um zu kommentieren.


naga harika
naga harika am 17 Feb. 2021
can i get the code for finding probability of false alarm and missing using predicted eigen value threshold
  2 Kommentare
Walter Roberson
Walter Roberson am 17 Feb. 2021
You write the code, or you have the university hire someone to write it for you. (If the university hires the person then they set out the scope of work to remain within the bounds they are comfortable with for plaigarism purposes. If you hire someone to do the work yourself, the university might decide that you are committing academic misconduct.)
Steven Lord
Steven Lord am 17 Feb. 2021
Or you could try asking the authors of the paper if they have code that they can and are willing to share with you.

Melden Sie sich an, um zu kommentieren.


divya kancharana
divya kancharana am 23 Mai 2021
Can I get code for automatic detection of tuberculosis by enhancing cxr image using dnn
  1 Kommentar
Walter Roberson
Walter Roberson am 23 Mai 2021
Yes, if you hire someone to write it for you. Otherwise, it is unlikely that you will find that code already prepared for distribution, and it is very unlikely that someone is going to read your post and decide to spend several days programming it up for you just because they were bored.

Melden Sie sich an, um zu kommentieren.


Cabila Subramaniyam
Cabila Subramaniyam am 17 Aug. 2021
Hi,
I am a Civil Engineering student. I have refered a paper on "CTS-LSTM: LSTM-based neural networks for correlated
time series prediction" for my research. This research paper is available in the science direct. Can someone please help me to develop a code for 'CTS-LSTM'. .
  3 Kommentare
Cabila Subramaniyam
Cabila Subramaniyam am 18 Aug. 2021
thank you

Melden Sie sich an, um zu kommentieren.


Vaishnavi
Vaishnavi am 24 Jun. 2023
how do i get a code for "Photorealistic reconstruction of visual texture using eeg signal"?
  2 Kommentare
DGM
DGM am 24 Jun. 2023
Bearbeitet: DGM am 24 Jun. 2023
You read the paper and see if the authors made any indication that they implemented their work in MATLAB. If they did, maybe you can ask them. If it's clear that they did not, you study the paper and other relevant works to build a firm understanding of the subject, and then you implement it in MATLAB or whatever language you prefer.
Walter Roberson
Walter Roberson am 24 Jun. 2023
I scanned the paper. There is nothing that suggests that the work was done in MATLAB; however the diagrams were plausibly created in MATLAB.

Melden Sie sich an, um zu kommentieren.


Image Analyst
Image Analyst am 24 Jun. 2023

LUO LUO
LUO LUO am 18 Apr. 2024
hi,how do i get a code for discrete random separation(DRS),it was applied to separate periodic gear mesh signals and random bearing signals?thanks.
  1 Kommentar
Image Analyst
Image Analyst am 18 Apr. 2024
Not sure how this is an answer to @samir mohamd's original question. Did you mean to post your own question in a separate thread? If so, do that and delete this one.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by