Fork me on GitHub
摘要: 主要流程:Realignment、Slice Timing Correction、Coregistration、Segmentation、Normalization 代码地址:https://github.com/zhoushusheng/fMRI_preprocessing 参数和步骤设置参考: 阅读全文
posted @ 2024-07-25 01:02 z_s_s 阅读(818) 评论(0) 推荐(0)
摘要: 运行说明:subjectsdir换成自己的文件夹地址, 有多少个受试者的DICOM就有多少个subjects子元素 。 代码地址:https://github.com/zhoushusheng/fMRI_preprocessing/blob/main/stupid_batch_dicom_forma 阅读全文
posted @ 2024-07-24 20:30 z_s_s 阅读(657) 评论(0) 推荐(0)
摘要: This problem occurs when running the installer from a folder that has a space anywhere in the directory path. Because of this, running the installer f 阅读全文
posted @ 2022-05-23 16:12 z_s_s 阅读(833) 评论(0) 推荐(0)
摘要: Annotation Type NoArgsConstructor in short,@NoArgsConstructor 无参数。@RequiredArgsConstructor 自定义参数。@AllArgsConstructor AllField参数 @NonNull 非空校验。@NonNull 阅读全文
posted @ 2022-02-12 19:47 z_s_s 阅读(193) 评论(0) 推荐(0)
摘要: 出于代码复用和简洁的考量,我们建议使用lombok 的注解@Slf4j 读者可以对比下文的传统写法。 In the development process , Printing the necessary logs is an essential part , And print the log , 阅读全文
posted @ 2022-02-12 18:49 z_s_s 阅读(111) 评论(0) 推荐(0)
摘要: All together now: A shortcut for @ToString, @EqualsAndHashCode, @Getter on all fields, @Setter on all non-final fields, and @RequiredArgsConstructor! 阅读全文
posted @ 2022-02-12 17:14 z_s_s 阅读(109) 评论(0) 推荐(0)
摘要: 今天细看了@PathVarible // // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package org.springframework 阅读全文
posted @ 2022-02-12 14:19 z_s_s 阅读(49) 评论(0) 推荐(0)
摘要: "#"和“$”二者有何不同呢?动态语句是Mybatis的主要特点。在被定义进mapper里的参数被传递给XML后,Mybatis Dynamic SQL在查询前会动态地被解析。Mybatis 有两种语法:#{} and ${}。 简而言之,'#{}' 被解析成placeholder '?',‘${} 阅读全文
posted @ 2022-02-12 09:42 z_s_s 阅读(65) 评论(0) 推荐(0)
摘要: Top 10 SQL Query Optimization Tips to Improve Database Performance 十条最优的提升数据库性能的查询语句优化技巧 SQL CREATE INDEX Statement 首先来到创建索引 The CREATE INDEX statemen 阅读全文
posted @ 2022-02-11 19:34 z_s_s 阅读(120) 评论(0) 推荐(0)
摘要: Mybatis 的特色功能就是动态语句。在使用 JDBC 的过程中,根据条件进行 SQL 的拼接麻烦且易错。 MyBatis 动态 SQL 的出现, 顺利地解决了这个麻烦。 MyBatis通过 OGNL 和 JSTL 来进行动态 SQL 的使用。 One of the most powerful f 阅读全文
posted @ 2022-02-11 18:11 z_s_s 阅读(154) 评论(0) 推荐(0)