Home
last modified time | relevance | path

Searched refs:n_scans (Results 1 – 17 of 17) sorted by relevance

/dports/science/py-nilearn/nilearn-0.8.1/examples/04_glm_first_level/
H A Dplot_adhd_dmn.py32 n_scans = 176 variable
47 frametimes = np.linspace(0, (n_scans - 1) * t_r, n_scans)
H A Dplot_design_matrix.py23 n_scans = 128 # the acquisition comprises 128 scans variable
24 frame_times = np.arange(n_scans) * tr # here are the corresponding frame times
35 motion = np.cumsum(np.random.randn(n_scans, 6), 0)
H A Dplot_spm_multimodal_faces.py66 n_scans = img.shape[-1] variable
69 frame_times = np.arange(n_scans) * tr
H A Dplot_localizer_surface_analysis.py78 n_scans = texture.shape[1] variable
79 frame_times = t_r * (np.arange(n_scans) + .5)
/dports/science/py-nilearn/nilearn-0.8.1/examples/02_decoding/
H A Dplot_haxby_glm_decoding.py63 n_scans = len(conditions_session) variable
64 frame_times = TR * np.arange(n_scans)
66 duration = TR * np.ones(n_scans)
/dports/science/py-nilearn/nilearn-0.8.1/examples/07_advanced/
H A Dplot_surface_bids_analysis.py89 n_scans = texture.shape[1] variable
90 frame_times = t_r * (np.arange(n_scans) + .5)
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/reporting/_visual_testing/
H A D_glm_reporter_visual_inspection_suite_.py35 n_scans = 176
44 frametimes = np.linspace(0, (n_scans - 1) * t_r, n_scans)
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/glm/first_level/
H A Dfirst_level.py535 n_scans = get_data(run_img).shape[3]
538 if confounds_matrix.shape[0] != n_scans:
547 end_time = (n_scans - 1 + self.slice_time_ref) * self.t_r
548 frame_times = np.linspace(start_time, end_time, n_scans)
/dports/graphics/libjxl/libjxl-0.6.1/lib/jxl/jpeg/
H A Ddec_jpeg_data_writer.cc309 const size_t n_scans = scan_info.num_components; in EncodeSOS() local
310 const size_t marker_len = 6 + 2 * n_scans; in EncodeSOS()
318 data[pos++] = n_scans; in EncodeSOS()
319 for (size_t i = 0; i < n_scans; ++i) { in EncodeSOS()
/dports/www/firefox/firefox-99.0/third_party/jpeg-xl/lib/jxl/jpeg/
H A Ddec_jpeg_data_writer.cc309 const size_t n_scans = scan_info.num_components; in EncodeSOS() local
310 const size_t marker_len = 6 + 2 * n_scans; in EncodeSOS()
318 data[pos++] = n_scans; in EncodeSOS()
319 for (size_t i = 0; i < n_scans; ++i) { in EncodeSOS()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/jpeg-xl/lib/jxl/jpeg/
H A Ddec_jpeg_data_writer.cc309 const size_t n_scans = scan_info.num_components; in EncodeSOS() local
310 const size_t marker_len = 6 + 2 * n_scans; in EncodeSOS()
318 data[pos++] = n_scans; in EncodeSOS()
319 for (size_t i = 0; i < n_scans; ++i) { in EncodeSOS()
/dports/www/firefox-esr/firefox-91.8.0/third_party/jpeg-xl/lib/jxl/jpeg/
H A Ddec_jpeg_data_writer.cc309 const size_t n_scans = scan_info.num_components; in EncodeSOS() local
310 const size_t marker_len = 6 + 2 * n_scans; in EncodeSOS()
318 data[pos++] = n_scans; in EncodeSOS()
319 for (size_t i = 0; i < n_scans; ++i) { in EncodeSOS()
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/_utils/
H A Ddata_gen.py24 def generate_mni_space_img(n_scans=1, res=30, random_state=0, mask_dilation=2): argument
32 data = rng.randn(n_scans, n_voxels)
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/glm/tests/
H A Dtest_first_level.py499 n_scans = get_data(func_img).shape[3]
501 end_time = (n_scans - 1 + slice_time_ref) * t_r
502 frame_times = np.linspace(start_time, end_time, n_scans)
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/tests/
H A Dtest_niimg_conversions.py592 np.zeros(shape + [n_scans]).astype(np.int16), np.eye(4))
593 for n_scans in [1, 5]]
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/surface/tests/
H A Dtest_surface.py616 def test_vol_to_surf(kind, n_scans, use_mask): argument
617 img, mask_img = data_gen.generate_mni_space_img(n_scans)
620 if n_scans == 1:
/dports/science/py-nilearn/nilearn-0.8.1/doc/glm/
H A Dglm_intro.rst86 … practice, the number of observations (i.e. the number of time points), `n_scans` minus the number…