where i can find source code of "detectPeopleACF"

조회 수: 1 (최근 30일)
liping feng
liping feng 2016년 6월 27일
답변: Dan 2016년 10월 4일
I want to knowledge how 'detectPeopleACF'to work. but i can find 'detectPeopleACF' source code in matlab toolbox.

채택된 답변

John D'Errico
John D'Errico 2016년 6월 27일
If detectPeopleACF is an m-file, then you can just use
type detectPeopleACF
at the command line to view the code.
Type is a FAR better choice than using edit. Some will suggest you use edit, but it is too easy to mistakenly change code, typing a character someplace at random without realizing you did that. Then worse, you will accidentally save the file. Yeah, like you would NEVER do that. People do. Then you will have a bug in your code, as the file will no longer run properly.
So use type to view code!
If the code has nothing visible in it when you try that beyond some lines of help, then it is compiled code or a p-file. You CANNOT view compiled code or p-files.

추가 답변 (3개)

liping feng
liping feng 2016년 6월 27일
thank you
detectPeopleACF maybe is compiled code .....
  댓글 수: 1
John D'Errico
John D'Errico 2016년 6월 27일
Please use comments when you want to make a comment. This is not an answer.
You MAY be able to find information about the algorithm in the help and any references provided in the documentation.

댓글을 달려면 로그인하십시오.


Steven Lord
Steven Lord 2016년 6월 27일
According to its documentation page this function is part of Computer Vision System Toolbox and was introduced in release R2016a. That documentation page also includes some references; if you want to understand what the function is doing, reading those references may be easier than reading the code.

Dan
Dan 2016년 10월 4일
https://github.com/pdollar/toolbox/blob/master/detector/acfReadme.m

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by