diff --git a/archetypes/publication.md b/archetypes/publication.md index 5c7ee13d..f6692abc 100644 --- a/archetypes/publication.md +++ b/archetypes/publication.md @@ -7,6 +7,7 @@ image_preview = "" math = false publication = "" publication_short = "" +selected = false url_pdf = "" url_code = "" url_dataset = "" diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 2d1356d4..dc3ef3c3 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -55,6 +55,13 @@ googleAnalytics = "" institution = "Massachusetts Institute of Technology" year = 2008 + # Selected Publications section. + # Section will only be displayed if there are publications with `selected = true` in their `+++` preamble. + [params.publications_selected] + detailed_list = true + title = "Selected Publications" + subtitle = "" + # Publications section. # Section will only be displayed if there are publications in `content/publication/`. [params.publications] diff --git a/exampleSite/content/publication/clothing-search.md b/exampleSite/content/publication/clothing-search.md index 11f78f16..d564c327 100644 --- a/exampleSite/content/publication/clothing-search.md +++ b/exampleSite/content/publication/clothing-search.md @@ -1,11 +1,14 @@ +++ abstract = "We present a mobile visual clothing search system whereby a smart phone user can either choose a social networking photo or take a new photo of a person wearing clothing of interest and search for similar clothing in a retail database. From the query image, the person is detected, clothing is segmented, and clothing features are extracted and quantized. The information is sent from the phone client to a server, where the feature vector of the query image is used to retrieve similar clothing products from online databases. The phone's GPS location is used to re-rank results by retail store location. State of the art work focuses primarily on the recognition of a diverse range of clothing offline and pays little attention to practical applications. Evaluated on a challenging dataset, the system is relatively fast and achieves promising results." +abstract_short = "A mobile visual clothing search system is presented whereby a smart phone user can either choose a social networking image or capture a new photo of a person wearing clothing of interest and search for similar clothing in a large cloud-based ecommerce database. The phone's GPS location is used to re-rank results by retail store location, to inform the user of local stores where similar clothing items can be tried on." authors = ["GA Cushen", "MS Nixon"] date = "2013-07-01" image = "" image_preview = "" math = true -publication = "In *IEEE International Conference on Multimedia and Expo Workshops (ICMEW)*" +publication = "In *International Conference on Multimedia and Expo Workshops (ICMEW)*, IEEE." +publication_short = "In *ICMEW*" +selected = true title = "Mobile visual clothing search" url_code = "#" url_dataset = "#" @@ -20,4 +23,4 @@ url = "http://www.example.org" +++ -More detail can easily be written here using *Markdown* and $\rm \LaTeX$ math code. \ No newline at end of file +More detail can easily be written here using *Markdown* and $\rm \LaTeX$ math code. diff --git a/exampleSite/content/publication/person-re-identification.md b/exampleSite/content/publication/person-re-identification.md index 548fa998..06fd7a66 100644 --- a/exampleSite/content/publication/person-re-identification.md +++ b/exampleSite/content/publication/person-re-identification.md @@ -1,11 +1,14 @@ +++ abstract = "Person re-identification is a critical security task for recognizing a person across spatially disjoint sensors. Previous work can be computationally intensive and is mainly based on low-level cues extracted from RGB data and implemented on a PC for a fixed sensor network (such as traditional CCTV). We present a practical and efficient framework for mobile devices (such as smart phones and robots) where high-level semantic soft biometrics are extracted from RGB and depth data. By combining these cues, our approach attempts to provide robustness to noise, illumination, and minor variations in clothing. This mobile approach may be particularly useful for the identification of persons in areas ill-served by fixed sensors or for tasks where the sensor position and direction need to dynamically adapt to a target. Results on the BIWI dataset are preliminary but encouraging. Further evaluation and demonstration of the system will be available on our website." +abstract_short = "" authors = ["GA Cushen"] date = "2015-09-01" image = "" image_preview = "" math = true -publication = "In *Signal Image Technology & Internet Systems (SITIS)*" +publication = "In *Signal Image Technology & Internet Systems (SITIS)*, IEEE." +publication_short = "" +selected = false title = "A Person Re-Identification System For Mobile Devices" url_code = "" url_dataset = "" diff --git a/layouts/index.html b/layouts/index.html index f5a8bf1d..2817e506 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -16,10 +16,39 @@ {{ end }} + +{{ $pubs_selected_len := len (where (where .Data.Pages "Type" "publication") ".Params.selected" true) }} +{{ if gt $pubs_selected_len 0 }} +
+
+
+
+

{{ with .Site.Params.publications_selected.title }}{{ . | markdownify }}{{ end }}

+ {{ with .Site.Params.publications_selected.subtitle }}

{{ . | markdownify }}

{{ end }} +
+
+ {{ if .Site.Params.publications_selected.detailed_list }} + {{ range (where (where .Data.Pages "Type" "publication") ".Params.selected" true) }} + {{ partial "publication_li_detailed" . }} + {{ end }} + {{ else }} +
    + {{ range (where (where .Data.Pages "Type" "publication") ".Params.selected" true) }} + {{ partial "publication_li_simple" . }} + {{ end }} +
+ {{ end }} +
+
+
+
+{{ end }} + + {{ $pubs_len := len (where .Data.Pages "Type" "publication") }} {{ if gt $pubs_len 0 }} -
+
@@ -37,16 +66,12 @@
{{ if .Site.Params.publications.detailed_list }} {{ range first .Site.Params.publications.count (where .Data.Pages "Type" "publication") }} - {{ partial "publication_list_item" . }} + {{ partial "publication_li_detailed" . }} {{ end }} {{ else }}
    {{ range first .Site.Params.publications.count (where .Data.Pages "Type" "publication") }} -
  • - - {{ .Title }} -

    {{ partial "publication_links" (dict "content" . "is_list" 1) }}

    -
  • + {{ partial "publication_li_simple" . }} {{ end }}
{{ end }} diff --git a/layouts/partials/publication_list_item.html b/layouts/partials/publication_li_detailed.html similarity index 100% rename from layouts/partials/publication_list_item.html rename to layouts/partials/publication_li_detailed.html diff --git a/layouts/partials/publication_li_simple.html b/layouts/partials/publication_li_simple.html new file mode 100644 index 00000000..5ac86f8b --- /dev/null +++ b/layouts/partials/publication_li_simple.html @@ -0,0 +1,5 @@ +
  • + + {{ .Title }} +

    {{ partial "publication_links" (dict "content" . "is_list" 1) }}

    +