Answered
dsp.SpectrumEstimatorを使用して得られた結果をリアルタイムで順次保存するにはどうすればよいか。
"リアルタイムでファイルに順次保存"とありますが、どのような形式で保存したいのでしょうか。 たとえば、MAT-fileで保存するということであれば、 |dsp.MatFileWriter| が使用できます。 |dsp.MatFileWriter...

nästan 8 år ago | 1

| accepted

Answered
リアルタイムで取り込んだ信号をある時間窓で周期的に切り出し,FFT処理した結果を順次保存する方法を教えてください。
|dsp.SpectrumAnalyzer| System objectでは処理結果を保存することはできません。 一方、 <https://jp.mathworks.com/help/dsp/ref/dsp.spectrumestimator-cla...

nästan 8 år ago | 2

| accepted

Answered
How to access gopro live streaming using image acquisition tool through WiFi
<http://jp.mathworks.com/help/supportpkg/ipcamera/ug/connect-to-ip-cameras.html#butdj6y ipcam function> would be helpful to acqu...

nästan 8 år ago | 0

| accepted

Answered
ビデオファイルにオーディオデータ(音声)を付けて保存する方法
|VideoWriter| では音声を一緒に書き込むことはできません。 Computer Vision System Toolboxの <https://jp.mathworks.com/help/vision/ref/vision.videofil...

nästan 8 år ago | 2

| accepted

Answered
点群データどうしの重ね合わせについて
画像上で点群XYZの対応点が既知ということでしたら <https://jp.mathworks.com/matlabcentral/fileexchange/55990-demo-files-for--robotic-vision-solutions-wi...

nästan 8 år ago | 3

| accepted

Answered
Plot3を用いた3次元点群の連続表示方法について
Michioさんのご指摘のとおりご自身で試したことを提示いただけるとヘルプが多く得られる可能性があります。 |permute| で行列の次元を入れ替えて、 |reshape| でN x 3の形式に変更しています。 詳細はそれぞれのヘルプなどをご...

nästan 8 år ago | 2

| accepted

Answered
ビデオファイルを分割保存する方法
ご質問いただく場合にはご自身で試されたことなども含めてご投稿いただけるとより適切なアドバイスが受けられる可能性があります。 参考: <https://jp.mathworks.com/matlabcentral/answers/309720-tuto...

ungefär 8 år ago | 4

| accepted

Answered
反射強度画像同士のSURFを用いた対応点検出
画像として保存した際にすべての値が255になってしまうということですが、こちらは |imwrite| が画像書き出しする際に強制的に |uint8| 型に変換をしているからになります。一度、 |mat2gray| などでデータのレンジを0~1の範囲に圧縮す...

ungefär 8 år ago | 3

| accepted

Answered
error in storing HOG feature
|extractHOGFeatures| returns different sized features based on the image size. So you will need to resize images to the same ima...

ungefär 8 år ago | 0

| accepted

Answered
Computer Vision System Toolboxの機械学習
車の検出についてはR2017aで入った領域ベースの畳み込みニューラルネットワーク (Faster R-CNN)が便利です。 詳細は <https://www.mathworks.com/help/releases/R2017a/vision/ref/...

ungefär 8 år ago | 1

| accepted

Answered
3d plot simple surf error
You need to change surf(xx,yy,f); to surf(xx(:,:,1),yy(:,:,1),f(:,:,1)); because <https://www.mathworks.com/help...

ungefär 8 år ago | 0

| accepted

Answered
Simulink model to Arduino code?
Yes, you can generate C code for Arduino through <https://jp.mathworks.com/matlabcentral/fileexchange/40312-simulink-support-pac...

ungefär 8 år ago | 1

| accepted

Answered
3次元の曲面上にコンターを描画する方法を探しています
曲面上に等高線を表示するには |contour3| がお使いいただけます。 下記の回答も参考になりそうです。 <https://jp.mathworks.com/matlabcentral/answers/165821-how-do-i-plo...

ungefär 8 år ago | 1

Answered
Chartを入れると正常に動作しない
|Buck| ステート内のコードを en: out1=in1; から du: out1=in1; に変更してみてください。 |en| は |entry| すなわちステートがアクティブになった時に一度だけ実行されます。し...

ungefär 8 år ago | 2

| accepted

Answered
シミュレーションのインプットパラメータを最小化するには?
Jiro Dokeさんのコメントのとおりもう少し具体的な処理がイメージできる形で書いていただけると迅速な回答が期待できます。 参考: <https://jp.mathworks.com/matlabcentral/answers/309720-tut...

ungefär 8 år ago | 2

| accepted

Answered
3d Point Cloud Training in CNN
As of release R2016b, |imageInputLayer| of CNN feature in Neural Network Toolbox does not accept 3D images(volume data) or 3D po...

ungefär 8 år ago | 0

| accepted

Answered
How to use the Computer Vision System Toolbox OpenCV Interface?
If you just want to use Harris corner detection algorithm, try <https://jp.mathworks.com/help/vision/ref/detectharrisfeatures.ht...

ungefär 8 år ago | 1

| accepted

Answered
I am doing research and know how I use radial basis function for face recognition in matlab
<https://jp.mathworks.com/matlabcentral/fileexchange/49914-streaming-face-detection--training--recognition This> is not based on...

ungefär 8 år ago | 0

Answered
Camera Calibration: Tilt image to make camera and image plane perpendicular
The easist way to compare the two images in same plance is to use |rectifyStereoImages| function, but if you want to know more w...

ungefär 8 år ago | 0

| accepted

Answered
image size of positive image set for training
You don't need to care the size of images. This is because |vision.CascadeObjectDetector| performs multiscale object detection o...

ungefär 8 år ago | 0

Answered
connecting android with matlab i.e sending camera frames from android phone to the input image of matlab code.
Try this. 1. Install "IPwebcam" app from the link and connect your Android to your host PC through WiFi. <https://play.goo...

ungefär 8 år ago | 3

Answered
Measuring object size with stereo vision
Have you tried this example? <https://www.mathworks.com/help/vision/ref/triangulate.html> Generally, the accuracy of stere...

ungefär 8 år ago | 0

Answered
How to add Time Delay
<https://www.mathworks.com/help/matlab/ref/timer-class.html |timer|> object might be helpful for scheduled execution.

ungefär 8 år ago | 0

Answered
列ベクトルを時系列データに変換する方法
DSP System Toolboxの |Unbuffer| ブロックを試してみてください。 下記の回答も参考になるかもしれません。 <https://jp.mathworks.com/matlabcentral/answers/321516-...

ungefär 8 år ago | 2

| accepted

Answered
How to do a manual calculation of worldpoints from image points with Matlab Computer Vision data
The following document page for |pointsToWorld| method would be helpful: <https://www.mathworks.com/help/releases/R2016b/visi...

ungefär 8 år ago | 3

| accepted

Answered
点群データ上のおける重心検出する方法について
Jiro Doke さんのご指摘のとおり具体的に書いていただけると適切な回答が迅速に得られる可能性があります。 点群のフィッティングについてはComputer Vision System Toolboxの |pcfitplane| 関数が役に立つかも...

mer än 8 år ago | 3

| accepted

Answered
discrete time optimization with non-linear constraints
I'm not sure what you want to get, but I tried to create an example. Hope this helps. function [x,f,eflag,outpt] = myModelP...

mer än 8 år ago | 2

| accepted

Answered
Simulinkでのアクセラレータの選択方法について
下記のページのようにアクセラレータモードを選択できないでしょうか。 <http://jp.mathworks.com/help/vision/ug/accelerating-simulink-models.html> ご確認ください。

mer än 8 år ago | 4

| accepted

Answered
ワークスペース上のデータをリアルタイムでSimulinkに出力する方法はありますか?
ジャイロセンサーからの出力はUSBとありますが、仮想シリアルポート通信になるという前提でお答えいたします。 逐次データを読み込んでSimulinkで処理をしたいということでしたら下記の3つの方法が考えられます。 # <https://jp.ma...

mer än 8 år ago | 3

| accepted

Answered
二輪モバイルロボットのシミュレーションについて
いただいた情報と、下記のサイトを参考に簡単なシミュレーションモデルを作ってみました。 <http://www.slideshare.net/adorepump/introduction-to-robotics-presentation> このよ...

mer än 8 år ago | 1

| accepted

Load more