Skip to content

Commit

Permalink
First time publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanning Liu committed Jun 6, 2024
1 parent 47bd6f7 commit 11433b7
Show file tree
Hide file tree
Showing 215 changed files with 3,083 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
_site
./_site
# Ignore compiled and generated files
node_modules/
dist/
build/
*.log
npm-debug.log*

# Ignore local development files
.env
.DS_Store

# Ignore GitHub Pages generated site
/_site/
/.jekyll-cache/
/.jekyll-metadata

# Ignore Jekyll settings
/_config.yml
Gemfile
Gemfile.lock
.jekyll-cache/
.jekyll-metadata

# Ignore VS Code settings
.vscode/

# Ignore other development tools
.sass-cache/
.jekyll-plugins/
.jekyll-versions/

# Ignore test and documentation files
/_tests/
/docs/
*.md
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tairanhe.com
1 change: 0 additions & 1 deletion README.md

This file was deleted.

Binary file added data/HanningLiu_CV_20240601.pdf
Binary file not shown.
Binary file added data/bfxr.pdf
Binary file not shown.
Binary file added data/mcar.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added images/HanningLiu-2021_1M.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/HanningLiu_Profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/abm/abm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/agile-but-safe/abs-gif-preview-long.mp4
Binary file not shown.
Binary file added images/bfxr/bfxr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/gh-plugin-ar/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/mcar/MCAR_mute_1min31s.mp4
Binary file not shown.
Binary file added images/prompt_survey/prompt_survey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/sibp/sibp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/web-logo-white-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
491 changes: 491 additions & 0 deletions index.html

Large diffs are not rendered by default.

100 changes: 100 additions & 0 deletions js/analytics.js

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions js/hidebib.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// from: http://www.robots.ox.ac.uk/~vedaldi/assets/hidebib.js
function hideallbibs()
{
var el = document.getElementsByTagName("div") ;
for (var i = 0 ; i < el.length ; ++i) {
if (el[i].className == "paper") {
var bib = el[i].getElementsByTagName("pre") ;
if (bib.length > 0) {
bib [0] .style.display = 'none' ;
}
}
}
}

function togglebib(paperid)
{
var paper = document.getElementById(paperid) ;
var bib = paper.getElementsByTagName('pre') ;
if (bib.length > 0) {
if (bib [0] .style.display == 'none') {
bib [0] .style.display = 'block' ;
} else {
bib [0] .style.display = 'none' ;
}
}
}

function toggleblock(blockId)
{
var block = document.getElementById(blockId);
if (block.style.display == 'none') {
block.style.display = 'block' ;
} else {
block.style.display = 'none' ;
}
}

function hideblock(blockId)
{
var block = document.getElementById(blockId);
block.style.display = 'none' ;
}
63 changes: 63 additions & 0 deletions js/scramble.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// scramble.js
//
// 2011, Jeff Donahue (http://jeffdonahue.com/).
// license: you can use this if you want to i guess

function scrambledString(tag, objName, initScrambledString, initScrambledStringIndices) {
this.tag = tag;
this.objName = objName;
this.string = initScrambledString;
this.indices = initScrambledStringIndices;
this.rescramble = rescramble;
this.initAnimatedBubbleSort = initAnimatedBubbleSort;
this.bubbleSortStep = bubbleSortStep;
this.bubbleSortBookmark = 0;

this.rescramble();
this.tag.innerHTML = this.string + ' <a href="#" onClick="' + this.objName + '.initAnimatedBubbleSort();return false;">unscramble</a>';
}

function rescramble() {
for (i = 0; i < this.indices.length; i++) {
indexToMove = Math.floor(Math.random() * (this.indices.length - i));
charIndexRemoved = this.indices.splice(indexToMove, 1);
this.indices = this.indices.concat(charIndexRemoved);
scrambledStringTemp = this.string.substring(0, indexToMove) +
this.string.substring(indexToMove + 1) +
this.string.substring(indexToMove, indexToMove + 1);
this.string = scrambledStringTemp;
}
}

function initAnimatedBubbleSort() {
this.interval = setInterval(this.objName + '.bubbleSortStep()', 12);
}

function bubbleSortStep() {
if (this.bubbleSortBookmark >= this.indices.length - 1) {
this.bubbleSortBookmark = 0;
}
for (i = this.bubbleSortBookmark; i < this.indices.length - 1; i++) {
if (i == 0) {
this.changed = 0;
}
if (this.indices[i] > this.indices[i + 1]) {
this.changed = 1;
tempIndex = this.indices[i];
this.indices[i] = this.indices[i + 1];
this.indices[i + 1] = tempIndex;
tempArrange = this.string.substring(0, i) +
this.string.substring(i + 1, i + 2) +
this.string.substring(i, i + 1) +
this.string.substring(i + 2);
this.string = tempArrange;
this.tag.innerHTML = this.string;
this.bubbleSortBookmark = i;
break;
}
}
this.bubbleSortBookmark = i;
if (!this.changed) {
clearInterval(this.interval);
}
}
37 changes: 37 additions & 0 deletions old_version/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
_site
./_site
# Ignore compiled and generated files
node_modules/
dist/
build/
*.log
npm-debug.log*

# Ignore local development files
.env
.DS_Store

# Ignore GitHub Pages generated site
/_site/
/.jekyll-cache/
/.jekyll-metadata

# Ignore Jekyll settings
/_config.yml
Gemfile
Gemfile.lock
.jekyll-cache/
.jekyll-metadata

# Ignore VS Code settings
.vscode/

# Ignore other development tools
.sass-cache/
.jekyll-plugins/
.jekyll-versions/

# Ignore test and documentation files
/_tests/
/docs/
*.md
1 change: 1 addition & 0 deletions old_version/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tairanhe.com
6 changes: 6 additions & 0 deletions old_version/data/3DSP_siggraphAsia2013.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article {li2013three,
Author = {Hao Li and Etienne Vouga and Anton Gudym and Linjie Luo and Jonathan T. Barron and Gleb Gusev},
Title = {3D Self-Portraits},
Journal = {SIGGRAPH Asia},
Year = {2013},
}
6 changes: 6 additions & 0 deletions old_version/data/Anderson2016.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{Anderson2016,
author = {Robert Anderson and David Gallup and Jonathan T. Barron and Janne Kontkanen and Noah Snavely and Carlos Hern\'andez and Sameer Agarwal and Steven M Seitz},
title = {Jump: Virtual Reality Video},
journal = {SIGGRAPH Asia},
year = {2016},
}
6 changes: 6 additions & 0 deletions old_version/data/ArbelaezCVPR2014.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{ArbelaezCVPR2014,
title = "Multiscale Combinatorial Grouping",
author = "Arbel{\'a}ez, Pablo and Pont-Tuset, J. and Barron, Jonathan T. and Marqu{\'e}s, F. and Malik, Jitendra",
journal = "CVPR",
year = "2014",
}
7 changes: 7 additions & 0 deletions old_version/data/B3DO_ICCV_2011.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@inproceedings{Janoch2011,
author = {Janoch, Allison and Karayev, Sergey and Jia, Yangqing and Barron, Jonathan T. and Fritz, Mario and Saenko, Kate and Darrell, Trevor},
booktitle = {ICCV Workshop on Consumer Depth Cameras for Computer Vision},
title = {A Category-Level 3-D Object Dataset: Putting the Kinect to Work}},
year = {2011}
}
6 changes: 6 additions & 0 deletions old_version/data/BarronCVPR2015.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{Barron2015A,
author = {Jonathan T. Barron and Andrew Adams and YiChang Shih and Carlos Hern\'andez},
title = {Fast Bilateral-Space Stereo for Synthetic Defocus},
journal = {CVPR},
year = {2015},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronCVPR2019.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{BarronCVPR2019,
Author = {Jonathan T. Barron},
Title = {A General and Adaptive Robust Loss Function},
Journal = {CVPR},
Year = {2019}
}
16 changes: 16 additions & 0 deletions old_version/data/BarronCVPR2019_reviews.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
R1:

My first impression is that this paper might be better reviewed in a machine
learning centered conference (i.e. ICML) instead of the computer vision ones,
as the major contribution of this paper comes from the loss function that could
be potentially applied to any learning task, not specific vision task.

Borderline Reject


R2:

Good theoretical development of unified robust loss and extensive experimental
evaluation on four vision task.

Accept
6 changes: 6 additions & 0 deletions old_version/data/BarronECCV2020.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{barron2020generalization,
title={A Generalization of Otsu's Method and Minimum Error Thresholding},
author={Barron, Jonathan T},
journal={ECCV},
year={2020}
}
6 changes: 6 additions & 0 deletions old_version/data/BarronICCV2013.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{BarronICCV2013,
AUTHOR = "Barron, Jonathan T. and Arbel{\'a}ez, Pablo and Ker{\"a}nen, Soile V. E. and Biggin, Mark D. and Knowles, David W. and Malik, Jitendra",
TITLE = "Volumetric Semantic Segmentation using Pyramid Context Features",
JOURNAL = "ICCV",
YEAR = "2013",
}
6 changes: 6 additions & 0 deletions old_version/data/BarronICCV2015.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{BarronICCV2015,
Author = {Jonathan T. Barron},
Title = {Convolutional Color Constancy},
Journal = {ICCV},
Year = {2015}
}
7 changes: 7 additions & 0 deletions old_version/data/BarronMalikCVPR2011.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@article{Barron2011,
Title = {High-Frequency Shape and Albedo from Shading using Natural Image Statistics},
Journal = {CVPR},
Author = {Jonathan T. Barron and Jitendra Malik},
Year = {2011},
}

6 changes: 6 additions & 0 deletions old_version/data/BarronMalikCVPR2012.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{Barron2012A,
Title = {Shape, Albedo, and Illumination from a Single Image of an Unknown Object},
Journal = {CVPR},
Author = {Jonathan T. Barron and Jitendra Malik},
Year = {2012},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronMalikCVPR2013.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{Barron2013A,
author = {Jonathan T. Barron and Jitendra Malik},
title = {Intrinsic Scene Properties from a Single RGB-D Image},
journal = {CVPR},
year = {2013},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronMalikECCV2012.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{Barron2012B,
author = {Jonathan T. Barron and Jitendra Malik},
title = {Color Constancy, Intrinsic Images, and Shape Estimation},
journal = {ECCV},
year = {2012},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronMalikTPAMI2015.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@ARTICLE{BarronTPAMI2015,
Author = {Jonathan T. Barron and Jitendra Malik},
Title = {Shape, Illumination, and Reflectance from Shading},
journal={TPAMI},
year={2015},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronMalikTPAMI2015B.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@ARTICLE{BarronTPAMI2015B,
Author = {Jonathan T. Barron and Jitendra Malik},
title = {Intrinsic Scene Properties from a Single RGB-D Image},
journal={TPAMI},
year={2015},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronPRL2009.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@techreport{BarronPRL2009,
Author = {Jonathan T. Barron and Dave Golland and Nicholas J. Hay},
Title = {Parallelizing Reinforcement Learning},
Institution = {EECS Department, University of California, Berkeley},
Year = {2009},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronPooleECCV2016.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{BarronPoole2016,
author = {Jonathan T. Barron and Ben Poole},
title = {The Fast Bilateral Solver},
journal = {ECCV},
year = {2016},
}
13 changes: 13 additions & 0 deletions old_version/data/BarronPooleECCV2016_reviews.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Essentially sections 1-3 contain very little new. Section 4 is marginally
interesting. Weak Reject.
- R2, CVPR 2016

the paper too much relies on the supplemental material compared with the
standard usage of the supplemental material. I suggest the authors to directly
go for a journal submission by reformatting the paper together with the
supplemental material. Strong Reject.
- R1, ECCV 2016

The paper solves a class of relevant problems in a neat manner. The method
should be made known to a wider audience. Oral.
- R3, ECCV 2016
9 changes: 9 additions & 0 deletions old_version/data/BarronTR2010.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@techreport{Barron:EECS-2010-94,
Author = {Barron, Jonathan T. and Malik, Jitendra},
Title = {Discovering Efficiency in Coarse-To-Fine Texture Classification},
Institution = {EECS Department, University of California, Berkeley},
Year = {2010},
Month = {Jun},
URL = {http://www.eecs.berkeley.edu/Pubs/TechRpts/2010/EECS-2010-94.html},
Number = {UCB/EECS-2010-94},
}
6 changes: 6 additions & 0 deletions old_version/data/BarronTsaiCVPR2017.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{BarronTsai2017,
author = {Jonathan T. Barron and Yun-Ta Tsai},
title = {Fast Fourier Color Constancy},
journal = {CVPR},
year = {2017},
}
6 changes: 6 additions & 0 deletions old_version/data/BrooksBarronCVPR2019.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{BrooksBarronCVPR2019,
author = {Tim Brooks and Jonathan T. Barron},
title = {Learning to Synthesize Motion Blur},
journal = {CVPR},
year = {2019},
}
11 changes: 11 additions & 0 deletions old_version/data/BrooksCVPR2019.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@article{BrooksCVPR2019,
author = {Tim Brooks and
Ben Mildenhall and
Tianfan Xue and
Jiawen Chen and
Dillon Sharlet and
Jonathan T. Barron},
title = {Unprocessing Images for Learned Raw Denoising },
journal = {CVPR},
year = {2019},
}
6 changes: 6 additions & 0 deletions old_version/data/Chen2016.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@article{Chen2016,
author = {Liang{-}Chieh Chen and Jonathan T. Barron and George Papandreou and Kevin Murphy and Alan L. Yuille},
title = {Semantic Image Segmentation with Task-Specific Edge Detection Using CNNs and a Discriminatively Trained Domain Transform},
journal = {CVPR},
year = {2016},
}
Loading

0 comments on commit 11433b7

Please sign in to comment.