問題タブ [quantization]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
39 参照

vector - ベクトル量子化の場合、デコーダで再構成された強度は考慮されますか?

RGB トレーニング イメージを使用してコードブックを作成したとします。このコードブックは、エンコーダとデコーダに存在します。

これで、圧縮、送信、および再構築したい 1 つの RGB テスト画像 (トレーニング画像には含まれていません) ができました。このテスト画像の再構築中、テスト画像の強度が異なるため、トレーニング画像の強度と完全に一致しないものもある可能性があるため、再構築された画像の一部が既存のベクトルの元の画像よりも暗くなったり明るくなったりすることはありません量子化アルゴリズム? K-means、LBG などの既存のアルゴリズムの強度を処理する方法はありますか? それとも、最初からトレーニング画像を適切に選択する必要がありますか? または、テスト画像もトレーニング画像に含める必要がありますか? 標準的な方法は何ですか?

0 投票する
1 に答える
220 参照

matlab - Matlab : Unable to get unique rationals when implementing a formula for binary to real number conversion Part1

There is a nonlinear dynamic system x_n = f(x_n,eta) whose functional form is x[n+1] = 2*x[n] mod 1. This is a chaotic dynamical system called as the Sawtooth map or the Bernoulli Map. I am facing difficulty in implementing the two representations of the inverse mapping given by Eq(4) and Eq(5). Following is a brief description of the problem.

description

where the sequence (s[n+k])_k=1 to N-1 is the symbolic description of the state x[n]. This description arises from the partitioning of the unit interval described below.

Let, the number of partitions M = 2 and the symbol space = {0,1} and the rule for assigning symbols is

Authors of this paper :

For Eq(5) I am not getting the same time series after inverse, few values differ after doing the binary to real conversion. Can somebody please let me the correct procedure?

I tried to implement the Bijective map for the Eqs(4) and (5), but it does not work.

Code for Eq(5) - I am binarizing into 2 ways. x contains the real numbers; s is the 0/1 binary equivalent of each real; y is the answer after converting s to real. s1 is the +1/-1 binary equivalent of x; b is the answer after converting to real. In this case of +1/-1, when I am converting from symbolic representation to real, I switch -1 with 0 and then apply the formula in Eq(5). From the answers, it can be seen that y and b are not the same as x after doing the conversion. I am also getting negative reals for b when the original reals are all unsigned rationals!! How can I correctly implement so that they are both same?

Let, x =

y =

b =

0 投票する
0 に答える
276 参照

matlab - 16x16 量子化テーブル ブロックを使用したときに、エンコードされた情報 (JPEG/JFIF) を書き込む方法

8x8 の代わりに 16x16 量子化テーブル ブロックと DCT ブロックを使用して JPEG エンコーダーを開発しようとしています。この新しいイメージの JFIF ヘッダーを書いているときに、いくつかの問題に直面しました。0xFFDB は、量子化テーブルの JFIF マーカーです。量子化テーブルのサイズを設定するための 2 バイトがあり、私の場合、サイズは (256+3) = 259 です。画像を保存した後、MATLAB はそれを読み取ったり表示したりできません。そこで、ツールを使って JFIF ヘッダーを読み取ったところ、16x16 量子化テーブルが 8x8 ブロックの多くのテーブルに分割されていることに気付きました!!!!! この写真のように。この問題の解決策はありますか????

0 投票する
2 に答える
1323 参照

matlab - MATLAB でのオーディオ レコーダー サンプルのクオンタイズ

内蔵ツールボックス以外のツールボックスを使用せずに、サウンド ウェーブ (16 ビット シングル チャネル) を録音して、audiorecorder15 ビットに量子化する必要があります (LSB を削除) 。誰でもこれについて助けることができますか?MATLAB

0 投票する
1 に答える
1245 参照

r - SOM における誤差の尺度の量子化

Rを使用してSOMモデルの量子化誤差(qe)をカウントしたい.これは私が試したコードです:

そのコードは正しいですか?qe を数える別の方法はありますか?

0 投票する
1 に答える
2010 参照

matlab - matlabで一様量子化器を使用して複雑な信号を量子化する

平均が 0、分散が 1 の複雑な正規分布を持つ信号があります。これを一様量子化器で 512 レベルに量子化したいと考えています。次の方法でMATLABで信号を生成しています-

次の方法で、512 レベルの範囲 (-1,1) の信号を量子化しています。

そのような信号を量子化する正しい方法ですか? これに関するご意見をいただければ幸いです。