├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Data ├── ArrayDesigns │ ├── FRLArray_10cmDiameter.stl │ ├── FRLArray_10cmDiameter_pic.jpg │ ├── FRLArray_5cmDiameter.stl │ └── MicrophoneModels.txt └── RIRs │ └── FRL_array │ └── ExampleRoom_S1_R1_FRL10cm.wav ├── LICENSE ├── README.md ├── Src ├── Align_DOA.m ├── Analyze_SRIR.m ├── Apply_Allpass.m ├── Examples │ └── Demo_BinauralSDM_QuantizedDOA_andRTModAP.m ├── GetReverbTime.m ├── Initialize_SOFA.m ├── Modify_Reverb_Slope.m ├── Plot_BRIR.m ├── Plot_DOA.m ├── Plot_Spec.m ├── PreProcess_P_RIR.m ├── PreProcess_Raw_RIR.m ├── PreProcess_Synthesize_SDM_Binaural.m ├── QuantizeDOA.m ├── Read_HRTF.m ├── Remove_BRIR_Delay.m ├── ReverbSynthesis │ ├── Schroeder_reverberator.m │ ├── allpass_filter.m │ ├── comb_filter.m │ └── iscoprime.m ├── Rotate_DOA.m ├── SaveRenderingStructs.m ├── Save_BRIR_sofa.m ├── Save_BRIR_wav.m ├── Smooth_DOA.m ├── Split_BRIR.m ├── Synthesize_SDM_Binaural.m ├── create_BRIR_data.m ├── create_FIR_eq.m ├── create_MicGeometry.m ├── create_SRIR_data.m ├── findDirect.m ├── getDSonset.m ├── getLundebyFOB.m ├── getLundebyRT30.m ├── read_RIR.m ├── removeER.m ├── roty.m ├── rotz.m └── shift_P_RIR.m └── ThirdParty ├── denoise_RIR.m ├── getLebedevSphere.m └── parfor_progressbar.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Data/ArrayDesigns/FRLArray_10cmDiameter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Data/ArrayDesigns/FRLArray_10cmDiameter.stl -------------------------------------------------------------------------------- /Data/ArrayDesigns/FRLArray_10cmDiameter_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Data/ArrayDesigns/FRLArray_10cmDiameter_pic.jpg -------------------------------------------------------------------------------- /Data/ArrayDesigns/FRLArray_5cmDiameter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Data/ArrayDesigns/FRLArray_5cmDiameter.stl -------------------------------------------------------------------------------- /Data/ArrayDesigns/MicrophoneModels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Data/ArrayDesigns/MicrophoneModels.txt -------------------------------------------------------------------------------- /Data/RIRs/FRL_array/ExampleRoom_S1_R1_FRL10cm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Data/RIRs/FRL_array/ExampleRoom_S1_R1_FRL10cm.wav -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/README.md -------------------------------------------------------------------------------- /Src/Align_DOA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Align_DOA.m -------------------------------------------------------------------------------- /Src/Analyze_SRIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Analyze_SRIR.m -------------------------------------------------------------------------------- /Src/Apply_Allpass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Apply_Allpass.m -------------------------------------------------------------------------------- /Src/Examples/Demo_BinauralSDM_QuantizedDOA_andRTModAP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Examples/Demo_BinauralSDM_QuantizedDOA_andRTModAP.m -------------------------------------------------------------------------------- /Src/GetReverbTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/GetReverbTime.m -------------------------------------------------------------------------------- /Src/Initialize_SOFA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Initialize_SOFA.m -------------------------------------------------------------------------------- /Src/Modify_Reverb_Slope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Modify_Reverb_Slope.m -------------------------------------------------------------------------------- /Src/Plot_BRIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Plot_BRIR.m -------------------------------------------------------------------------------- /Src/Plot_DOA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Plot_DOA.m -------------------------------------------------------------------------------- /Src/Plot_Spec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Plot_Spec.m -------------------------------------------------------------------------------- /Src/PreProcess_P_RIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/PreProcess_P_RIR.m -------------------------------------------------------------------------------- /Src/PreProcess_Raw_RIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/PreProcess_Raw_RIR.m -------------------------------------------------------------------------------- /Src/PreProcess_Synthesize_SDM_Binaural.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/PreProcess_Synthesize_SDM_Binaural.m -------------------------------------------------------------------------------- /Src/QuantizeDOA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/QuantizeDOA.m -------------------------------------------------------------------------------- /Src/Read_HRTF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Read_HRTF.m -------------------------------------------------------------------------------- /Src/Remove_BRIR_Delay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Remove_BRIR_Delay.m -------------------------------------------------------------------------------- /Src/ReverbSynthesis/Schroeder_reverberator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/ReverbSynthesis/Schroeder_reverberator.m -------------------------------------------------------------------------------- /Src/ReverbSynthesis/allpass_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/ReverbSynthesis/allpass_filter.m -------------------------------------------------------------------------------- /Src/ReverbSynthesis/comb_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/ReverbSynthesis/comb_filter.m -------------------------------------------------------------------------------- /Src/ReverbSynthesis/iscoprime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/ReverbSynthesis/iscoprime.m -------------------------------------------------------------------------------- /Src/Rotate_DOA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Rotate_DOA.m -------------------------------------------------------------------------------- /Src/SaveRenderingStructs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/SaveRenderingStructs.m -------------------------------------------------------------------------------- /Src/Save_BRIR_sofa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Save_BRIR_sofa.m -------------------------------------------------------------------------------- /Src/Save_BRIR_wav.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Save_BRIR_wav.m -------------------------------------------------------------------------------- /Src/Smooth_DOA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Smooth_DOA.m -------------------------------------------------------------------------------- /Src/Split_BRIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Split_BRIR.m -------------------------------------------------------------------------------- /Src/Synthesize_SDM_Binaural.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/Synthesize_SDM_Binaural.m -------------------------------------------------------------------------------- /Src/create_BRIR_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/create_BRIR_data.m -------------------------------------------------------------------------------- /Src/create_FIR_eq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/create_FIR_eq.m -------------------------------------------------------------------------------- /Src/create_MicGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/create_MicGeometry.m -------------------------------------------------------------------------------- /Src/create_SRIR_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/create_SRIR_data.m -------------------------------------------------------------------------------- /Src/findDirect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/findDirect.m -------------------------------------------------------------------------------- /Src/getDSonset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/getDSonset.m -------------------------------------------------------------------------------- /Src/getLundebyFOB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/getLundebyFOB.m -------------------------------------------------------------------------------- /Src/getLundebyRT30.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/getLundebyRT30.m -------------------------------------------------------------------------------- /Src/read_RIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/read_RIR.m -------------------------------------------------------------------------------- /Src/removeER.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/removeER.m -------------------------------------------------------------------------------- /Src/roty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/roty.m -------------------------------------------------------------------------------- /Src/rotz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/rotz.m -------------------------------------------------------------------------------- /Src/shift_P_RIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/Src/shift_P_RIR.m -------------------------------------------------------------------------------- /ThirdParty/denoise_RIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/ThirdParty/denoise_RIR.m -------------------------------------------------------------------------------- /ThirdParty/getLebedevSphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/ThirdParty/getLebedevSphere.m -------------------------------------------------------------------------------- /ThirdParty/parfor_progressbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/BinauralSDM/HEAD/ThirdParty/parfor_progressbar.m --------------------------------------------------------------------------------